summaryrefslogtreecommitdiff
path: root/tests/executor/disable_eval_off.phpt
blob: 1ee87f5855b27daa479c2ad5cfa3247fa0a03ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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)