Sophie

Sophie

distrib > Mageia > 1 > i586 > media > core-updates > by-pkgid > 825f62a424e0b9c7467da10369080f57 > files > 11

php-suhosin-0.9.32.1-5.2.mga1.i586.rpm

--TEST--
Testing: suhosin.executor.disable_eval=0
--SKIPIF--
<?php include "../skipifnotcli.inc"; ?>
--INI--
suhosin.log.sapi=64
suhosin.executor.disable_eval=0
--FILE--
<?php
    $x = 0;
    eval('$x = 1;');
    var_dump($x);
?>
--EXPECTF--
int(1)