gpt4 book ai didi

php - 如何检查父类的instanceof?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:55:44 26 4
gpt4 key购买 nike

在 PHP 中有两个类:class parentTroll {...}class troll extends parentTroll {...}

然后有一个对象$troll = new troll();

如何检查$troll instanceof parentTroll?该行现在返回 false。

最佳答案

以下示例返回 true:

class parentTroll {}
class troll extends parentTroll {}
$troll = new troll();

var_dump($troll instanceof parentTroll);

输出:

boolean true

你也可以使用ReflectionClass:

var_dump((new ReflectionClass($troll))->getParentClass()->getName() == 'parentTroll');

关于php - 如何检查父类的instanceof?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23781210/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com