summaryrefslogtreecommitdiff
path: root/src/tests/disabled_functions_ret_user.phpt
blob: 597a6b8a0470fffd5bd0751c167908c3dd9fec05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Check NULL return value for user func
--SKIPIF--
<?php if (!extension_loaded("snuffleupagus")) die "skip"; ?>
--INI--
sp.configuration_file={PWD}/config/config_disabled_functions_ret_user.ini
--FILE--
<?php 
function qwe() {
  return "asd";
}
qwe();
echo 1;
?>
--EXPECT--
1