Adam Voigt wrote:
Actually this is not true. For example:

$test = "22";

if(is_string($test))
        echo "IS A STRING";

Will print "IS A STRING".

Try

$test = 22;

The " denotes a string and without quotes it denotes a value....


HTH, Roger

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



Reply via email to