blob: 8a229d43c47458c57ceef22ba453a659dd545d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Testing if call_user_func() actually works
--SKIPIF--
<?php include "../skipifnotcli.inc"; ?>
--INI--
suhosin.log.sapi=64
--FILE--
<?php
call_user_func("printf", "hello\n");
?>
--EXPECTF--
hello
|