阅读量:0
get_class()
函数用于获取一个对象的类名。其语法为:
string get_class ( object $object )
其中,$object
是要获取类名的对象。调用该函数时,会返回对象的类名字符串。
例如,假设有一个名为Person
的类:
class Person { public $name; } $person = new Person(); echo get_class($person); // 输出:Person
get_class()
函数用于获取一个对象的类名。其语法为:
string get_class ( object $object )
其中,$object
是要获取类名的对象。调用该函数时,会返回对象的类名字符串。
例如,假设有一个名为Person
的类:
class Person { public $name; } $person = new Person(); echo get_class($person); // 输出:Person
为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!