1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/tests/lang/044.phpt
2007-09-27 00:32:40 +00:00

22 lines
380 B
PHP

--TEST--
Dynamic call for static methods dynamically named
--FILE--
<?php
class A {
static function foo() { return 'foo'; }
}
$classname = 'A';
$wrongClassname = 'B';
$methodname = 'foo';
echo $classname::$methodname()."\n";
echo $wrongClassname::$methodname()."\n";
?>
===DONE===
--EXPECTF--
foo
Fatal error: Class 'B' not found in %s044.php on line %d