-=[ Mr. Bumblebee ]=-
_Indonesia_

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

--TEST--
ZE2 Late Static Binding testing get_called_class()
--FILE--
<?php

class TestClass {
	public static function getClassName() {
		return get_called_class();
	}
}

class ChildClass extends TestClass {}

echo TestClass::getClassName() . "\n";
echo ChildClass::getClassName() . "\n";
?>
==DONE==
--EXPECTF--
TestClass
ChildClass
==DONE==

Copyright © 2017 || Recoded By Mr.Bumblebee