blob: 9d2dabaa1c3c7836b50da557c1ce12fe584d1b04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
Disable functions - match on a specific line
--SKIPIF--
<?php if (!extension_loaded("snuffleupagus")) die "skip"; ?>
--INI--
sp.configuration_file={PWD}/config/disabled_functions_line.ini
--FILE--
<?php
system("echo 1337");
system("id");
?>
--EXPECTF--
1337
Fatal error: [snuffleupagus][0.0.0.0][disabled_function] Aborted execution on call of the function 'system' in %a/disabled_functions_param_line.php on line 3
|