Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 087758ee649c95efd18f04af1a5f741a > files > 9

php-suhosin-0.9.33-5.mga4.x86_64.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"