Sophie

Sophie

distrib > Mandriva > 2010.1 > i586 > by-pkgid > f7c6dce96785e6663c503caebf2b2e43 > files > 9

php-suhosin-0.9.33-0.1mdv2010.2.i586.rpm

--TEST--
Testing: suhosin.executor.disable_emodifier=0
--SKIPIF--
<?php include "../skipifnotcli.inc"; ?>
--INI--
suhosin.log.sapi=64
suhosin.executor.disable_emodifier=0
--FILE--
<?php
    $text = "HALLO";
    var_dump(preg_replace('/[a-z]/e', "strtoupper('\\0')", $text));
    $text = "HalLO";
    var_dump(preg_replace('/[a-z]/e', "strtoupper('\\0')", $text));
?>
--EXPECTF--
string(5) "HALLO"
string(5) "HALLO"