>> Ok. Say me please, what should i get for
>> stripslashes("\\\\\\\\\\"); ???

"\\\\\\\\\\" is a string of five slashes. Applying stripslashes to it
would convert each double slash to one slash (resulting in two slashes)
and the remaning danglish slash is considered an invalid escape and is
dropped. The result is - two slashes. Check for yourself.

-- 
Stanislav Malyshev, Zend Products Engineer
[EMAIL PROTECTED]  http://www.zend.com/ +972-3-6139665 ext.115



-- 
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