Hi

The following code:

<?php
$b="";
$c="df";
$a=($b and $c);
echo "A = ".$a;
?>

yields:

A = 0 in PHP 4
and
A =   in PHP 5

How can I get the same behavior in PHP5 as in PHP4
without changing the source code? Is there an option
in php.ini I'm missing?
 



 
____________________________________________________________________________________
Expecting? Get great news right away with email Auto-Check. 
Try the Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/newmail_tools.html 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to