-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/class_alias_005.phpt

--TEST--
Testing static call method using the original class name
--FILE--
<?php

class foo { 
	static public function msg() {
		print "hello\n";
	}
}

interface test { }


class_alias('foo', 'baz');

class bar extends baz { 
	public function __construct() {
		foo::msg();
	}	
}

new bar;

?>
--EXPECT--
hello

Copyright © 2017 || Recoded By Mr.Bumblebee