首页 > 代码库 > get_class php

get_class php

get_class返回对象的类名

string get_class ([ object $obj ] )

返回对象实例 obj所属类的名字。如果 obj不是一个对象则返回 FALSE

自 PHP 5 起,如果在对象的方法中调用则 obj 为可选项。

<?php
class foo
{
function
foo
()
{
// implements some logic
}
function
name
()
{
echo
"My name is " , get_class($this) , "\n"
;
}
}
// create an object
$bar = new foo
();
// external call
echo "Its name is " , get_class($bar) , "\n"
;
// internal call
$bar->name
();
?>

以上例程会输出:

Its name is foo
My name is foo

get_class php