vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to prevent empty array values in serialization? (https://vborg.vbsupport.ru/showthread.php?t=104658)

Lionel 01-06-2006 08:21 PM

How to prevent empty array values in serialization?
 
I have six textboxes on a page.

For the db insert I do

PHP Code:

$preddata1 serialize((is_array($_POST['predminutes1']) ? $_POST['predminutes1']: array())); 

and I insert $preddata1.

Results inserted in db are as below

PHP Code:

 a:6:{s:10:"0000000031";s:2:"25";s:10:"0000000032";s:0:"";s:10:"0000000033";s:2:"35";s:10:"0000000034";s:0:"";s:10:"0000000035";s:0:"";s:10:"0000000036";s:0:"";} 

As you can see the array only has 2 values "25" and "35".

How can I prevent the other empty values to be recorded?

akanevsky 01-07-2006 11:17 AM

Unset empty array items?

Lionel 01-07-2006 12:28 PM

how would i do that?

This is the full code
PHP Code:

if (!empty($_POST['predminutes1'])){
$keys1 array_keys($_POST['predminutes1']);
if (!empty(
$_POST['predplayer1'])){
$keys2 array_keys($_POST['predplayer1']); 
$diff array_diff($keys1$keys2);
if(
count($diff) > 0) {
eval(
print_standard_error('error_invalidpenalty1'));
}
}


Of course this is getting messed up since I am getting all the empties in $keys1 which only has 2 values

Here is a print out of results. First line is $keys1 second is $keys2 and third is $diff


PHP Code:

Array ( [0] => 0000000031 [1] => 0000000032 [2] => 0000000033 [3] => 0000000034 [4] => 0000000035 [5] => 0000000036 
Array ( [
0] => 0000000034 [1] => 0000000036 
Array ( [
0] => 0000000031 [1] => 0000000032 [2] => 0000000033 [4] => 0000000035 

All I want to say is that if the textbox($keys1) next to a checkbox($keys2) is empty (both have the same $playerid as key), eval the error.

filburt1 01-07-2006 03:31 PM

PHP Code:

foreach ($array as $key => $value)
{
    if (empty(
$value) and $value !== and $value !== false)
    {
        unset(
$array[$key]);
    }



Lionel 01-07-2006 03:40 PM

Thanks filburt1. Finally that is getting somewhere.


All times are GMT. The time now is 09:30 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01284 seconds
  • Memory Usage 1,736KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete