blob: fc053608f4848f6e7a1f05397a53b0a0fc3e2a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--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[snuffleupagus][0.0.0.0][disabled_function][drop] Aborted execution on call of the function 'echo' in %a/tests/disabled_function_print.php:3.
|