ID: 7869
Updated by: cynic
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Feature/Change Request
Assigned To: 
Comments:

have parse_str return would be certainly good; as a workaround you can use 

parse_str( $s , $a ) ;
if( 0 == count( $a ) ) {
   # problem
   ...

Previous Comments:
---------------------------------------------------------------------------

[2000-11-17 22:05:57] [EMAIL PROTECTED]
<? 
$string="?a=1&b=2"; 

if (!false===parse_str($string))
        { 
        // all is happy
        } 
else    { 
        // Whoops! error handling... 
        }

?> 

I would submit that to maintain the elegant conventions of PHP, it would be good to 
return 
A) The number of variables parsed (I'll leave in your court how to handle counting the 
# of array variables parsed) 

or 

B) false if the string was null, corrupt or "un-parsable". 

Currently, the only way to evaluate the success of this function is to know the last 
variable that is/should be in the input stream and check to see that THAT variable 
exists after running this function = less than optimum. 

Thanks!

-Ben 

---------------------------------------------------------------------------


Full Bug description available at: http://bugs.php.net/?id=7869


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to