(PHP 5 >= 5.3.0, PHP 7)
get_called_class — ���ھ�̬��"Late Static Binding"���������
��ȡ��̬�������õ�������
����������ƣ�������������е����� FALSE
��
Example #1 get_called_class() ��ʹ��
<?php
class foo {
static public function test() {
var_dump(get_called_class());
}
}
class bar extends foo {
}
foo::test();
bar::test();
?>
�������̻������
string(3) "foo" string(3) "bar"