Sophie

Sophie

distrib > Mageia > 1 > i586 > by-pkgid > 6d760d055fd3a2b310e8987a120d5d70 > files > 9

php-suhosin-0.9.32.1-5.1.mga1.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"