* Thus wrote T UmaShankari:
> 
> Hello,
> 
>  I am having one string variable which has the value fetched from the
> mysql table. Is it possible to find '\0' character in that string ?

http://php.net/strstr
http://php.net/strpos

strstr($nulledstring, "\0");
strpos($nulledstring, "\0");



Curt
-- 
The above comments may offend you. flame at will.

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

Reply via email to