File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / class_alias_017.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:52 2012 UTC (12 years, 4 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--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();

?>
--EXPECTF--
foo
baz
foo
foo

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>