Searched refs:parse_str (Results 1 – 18 of 18) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | parse_str_error1.phpt | 2 Test parse_str() function : non-default arg_separator.input specified 7 /* Prototype : void parse_str ( string $str [, array &$arr ] ) 12 echo "*** Testing parse_str() : error conditions ***\n"; 15 parse_str(); 18 parse_str($s1, $res_array, true); 23 *** Testing parse_str() : error conditions *** 27 Warning: parse_str() expects at least 1 parameter, 0 given in %s on line %d 31 Warning: parse_str() expects at most 2 parameters, 3 given in %s on line %d
|
H A D | parse_str_basic3.phpt | 17 var_dump(parse_str($s1)); 27 var_dump(parse_str($str, $res)); 32 var_dump(parse_str($str, $res)); 38 var_dump(parse_str($s1)); 44 parse_str($s1); 49 parse_str($s1, $res); 54 var_dump(parse_str($s1, $res)); 59 var_dump(parse_str($s1, $res)); 64 var_dump(parse_str($s1, $res)); 69 var_dump(parse_str($s1, $res)); [all …]
|
H A D | parse_str_basic1.phpt | 2 Test parse_str() function : basic functionality 6 /* Prototype : void parse_str ( string $str [, array &$arr ] ) 11 echo "*** Testing parse_str() : basic functionality ***\n"; 15 var_dump(parse_str($s1)); 20 var_dump(parse_str($s1, $res1)); 26 var_dump(parse_str($s1, $res2)); 31 var_dump(parse_str($s1, $res3_array)); 37 *** Testing parse_str() : basic functionality *** 40 Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on lin…
|
H A D | bug77439.phpt | 2 Bug #77439: parse_str segfaults when inserting item into existing array 6 parse_str('a[1]=1'); 10 Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on lin…
|
H A D | bug24208.phpt | 2 Bug #24208 (parse_str() is not working) 6 parse_str("a=1&b=2&c=3"); 10 Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on lin…
|
H A D | parse_str_basic2.phpt | 2 Test parse_str() function : non-default arg_separator.input specified 7 /* Prototype : void parse_str ( string $str [, array &$arr ] ) 12 echo "*** Testing parse_str() : non-default arg_separator.input specified ***\n"; 15 var_dump(parse_str($s1, $result)); 21 *** Testing parse_str() : non-default arg_separator.input specified ***
|
H A D | parse_str_basic4.phpt | 2 Test parse_str() function : test with badly formed strings 5 /* Prototype : void parse_str ( string $str [, array &$arr ] ) 12 var_dump(parse_str($str, $res)); 16 var_dump(parse_str($str, $res)); 20 var_dump(parse_str($str, $res)); 25 var_dump(parse_str($str, $res)); 30 var_dump(parse_str($str, $res));
|
H A D | parse_str_memory_error.phpt | 2 parse_str() should not read uninitialized memory when checking for $this 8 parse_str('abcd=1', $array);
|
/PHP-7.2/Zend/tests/ |
H A D | this_in_parse_str.phpt | 2 $this re-assign in parse_str() 6 parse_str("this=42"); 12 Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on lin… 16 #0 %sthis_in_parse_str.php(3): parse_str('this=42')
|
H A D | parse_str_with_unpack.phpt | 2 Calling parse_str through argument unpacking 8 parse_str(...["i=41"]); 15 Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on lin…
|
H A D | bug73181.phpt | 2 Bug #73181: parse_str() without a second argument leads to crash 7 parse_str("1&x"); 15 Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on lin…
|
H A D | dynamic_call_006.phpt | 12 $func = 'parse_str'; 38 Warning: Cannot call parse_str() with a single argument dynamically in %s on line %d
|
/PHP-7.2/ext/mbstring/tests/ |
H A D | bug48697.phpt | 2 Bug #48697 (mb_internal_encoding() value gets reset by parse_str() or mb_parse_str() 14 parse_str('a=b'); 18 parse_str('a=b');
|
/PHP-7.2/ext/standard/ |
H A D | php_string.h | 78 PHP_FUNCTION(parse_str);
|
H A D | basic_functions.c | 2829 PHP_FE(parse_str, arginfo_parse_str)
|
H A D | string.c | 4583 PHP_FUNCTION(parse_str) argument
|
/PHP-7.2/ |
H A D | UPGRADING | 214 . Calling parse_str() without the result argument has been deprecated.
|
H A D | NEWS | 622 . Fixed bug #77439 (parse_str segfaults when inserting item into existing 2477 . Fixed bug #73181 (parse_str() without a second argument leads to crash).
|
Completed in 70 milliseconds