php-src/Zend/tests/class_alias_017.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

34 lines
358 B
PHP

--TEST--
Testing alias with get_called_class() and get_class()
--FILE--
<?php
class foo {
public function __construct() {
echo get_called_class(), "\n";
}
static public function test() {
echo get_class(), "\n";
}
}
class_alias('foo', 'bar');
new bar;
class baz extends bar {
}
new baz;
baz::test();
bar::test();
?>
--EXPECT--
foo
baz
foo
foo