Mantis - Quercus
Viewing Issue Advanced Details
552 minor always 12-23-05 01:12 12-27-05 15:45
bago  
 
normal  
closed  
3.0.17 fixed  
none    
none 3.0.18  
0000552: parse_str is not implemented
Always trying to run Wordpress:

http://www.php.net/parse_str [^]

void parse_str ( string str [, array &arr] )

<?php
$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str);
echo $first; // value
echo $arr[0]; // foo bar
echo $arr[1]; // baz

parse_str($str, $output);
echo $output['first']; // value
echo $output['arr'][0]; // foo bar
echo $output['arr'][1]; // baz

?>

Notes
(0000583)
ferg   
12-27-05 15:45   
php/114[4-7]