blob: a8b10b4a9fcd2f66b228a43233f892f9d476a18d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--TEST--
Echo hooking
--SKIPIF--
<?php if (!extension_loaded("snuffleupagus")) die "skip"; ?>
--INI--
sp.configuration_file={PWD}/config/disabled_function_print.ini
--FILE--
<?php
function test($a) {
print "$a";
}
print "qwe";
test("rty");
test("oops");
?>
--CLEAN--
--EXPECTF--
qwerty
Fatal error: [snuffleupagus][disabled_function] Aborted execution on call of the function 'echo' in %a/disabled_function_print.php on line 3
|