欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

笔记016 PHP中的 get_class() 函数

程序员文章站 2022-04-02 09:47:30
...
get_class() 的作用是返回对象的类名。

说明

用法:

string get_class ([ object $obj ] )

返回 obj 对象对应的类名,如果 obj 不是对象,则会返回 false。

通过这个方法,我们在写一些底层相关的代码的时候,可以轻松很多。

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

实例

实例1:

<?phpclass TestCase{    function getName()
    {        echo "My name is ", get_class($this), "\n";
    }
}// Create an object
$instance = new TestCase();
// External call
echo "Its name is ", get_class($instance), "\n";
// Internal call
$instance->getName();

输出结果为:Its name is TestCase My name is TestCase

实例2:带命名空间的类

<?php
namespace TestNamespace;
class TestCase{    
function getName()
    {        
echo "My name is ", get_class($this), "\n";
    }
}
// Create an object
$instance = new TestCase();
// External call
echo "Its name is ", get_class($instance), "\n";
// Internal call
$instance->getName();

输出结果为:Its name is TestNamespace\TestCase My name is TestNamespace\TestCase

因此,若要获得这个类对应的命名空间,这个方法也是超有用的。

实例3:忽略obj参数

<?phpnamespace TestNamespace;class TestParentCase{    function getName()
    {        echo "My name is ", get_class(), "\n";
    }
}class TestCase extends TestParentCase{    function getThisName()
    {        echo "My name is ", get_class(), "\n";
    }
}// Create an object$instance = new TestCase();

$instance->getName();
$instance->getThisName();

输出结果为:My name is TestNamespace\TestParentCase My name is TestNamespace\TestCase

注意返回的结果中的差异,省略obj参数以后,获取到的是定义它的类的名称

有其它需要注意的情况,欢迎大家向 Hy369 反馈,我会及时补充到自己的博客中的。

以上就是笔记016 PHP中的 get_class() 函数的内容,更多相关内容请关注PHP中文网(www.php.cn)!