From: [EMAIL PROTECTED] Operating system: Linux 2.4 Mandrake 8 PHP version: 4.0.6 PHP Bug Type: Filesystem function related Bug description: file() function sometimes adds slashes before single and double quotes
this bug (?) is difficult to encircle and reproduce (and understand), because it appears in a very erratic way. from time to time, when a file is read with file() and its content displayed line by line with each(), all its single and double quotes are automatically backslashed ! example : with 'toto.txt' contains : je n'aime pas ce "bug" ! and the following script : <?php $my_file = file('toto.txt'); while(list(, $my_line) = each($my_file)) { echo $my_line; } ?> **sometimes** we get something like : je n\'aime pas ce \"bug\" ! (and sometimes not...) ?!?! - our system : Linux 2.4 (Mdk 8) Apache 1.3.22 PHP 4.0.6 (RPM Mdk) -- Edit bug report at: http://bugs.php.net/?id=15200&edit=1 -- 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]