From: [EMAIL PROTECTED]
Operating system: Unix
PHP version: 4.0.6
PHP Bug Type: Unknown/Other Function
Bug description: Bad escape sequence
When safe_mode is set to On, it is impossible to pass a variable that contains a
string with a space in it as an argument to any system() like function. The following
script shows the problem:
<?
$somevar = "this is a test";
exec("echo.sh $somevar", $return);
echo $return[0];
?>
echo.sh being a simple shell script that echoes back anything that we feed it. The
following PHP script will display 'this' instead of 'this is a test'. I tried
backslashing every chars of the variable by writing a simple function but spaces seems
not to be correctly passed to the shell script. The same script executed when
safe_mode is set to off works perfectly...
Veins - [EMAIL PROTECTED]
--
Edit Bug report at: http://bugs.php.net/?id=11767&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]