summaryrefslogtreecommitdiff
path: root/Zend/tests/bug27669.phpt
blob: 97b15590e2e1f907605fbb8066c786c58e89baa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Bug #27669 (PHP 5 didn't support all possibilities for calling static methods dynamically)
--FILE--
<?php
	class A {
		function hello() {
			echo "Hello World\n";
		}
	}
	$y[0] = 'hello';
	A::{$y[0]}();
?>
===DONE===
--EXPECTF--
Deprecated: Non-static method A::hello() should not be called statically in %s on line %d
Hello World
===DONE===