blob: 15b830ec684455f4a450fed6bfa5916efcb60763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Testing dynamic call with invalid method name
--FILE--
<?php
$a = new stdClass;
$b = 1;
$a::$b();
?>
--EXPECTF--
Fatal error: Function name must be a string in %s on line %d
|