-=[ Mr. Bumblebee ]=-
_Indonesia_

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

--TEST--
Testing declaration of alias to 'static'
--FILE--
<?php

class bar {
}

class foo { 
	public function test() {
		class_alias('bar', 'static');
		return new static;
	}
}

$a = new foo;
var_dump($a->test());

?>
--EXPECTF--
object(foo)#%d (0) {
}

Copyright © 2017 || Recoded By Mr.Bumblebee