php-src/Zend/tests/bug27669.phpt
2020-02-03 22:52:20 +01:00

15 lines
279 B
PHP

--TEST--
Bug #27669 (PHP 5 didn't support all possibilities for calling static methods dynamically)
--FILE--
<?php
class A {
static function hello() {
echo "Hello World\n";
}
}
$y[0] = 'hello';
A::{$y[0]}();
?>
--EXPECTF--
Hello World