9

如何检查是否已声明静态类?ex 给定班级

class bob {
    function yippie() {
        echo "skippie";
    }
}

稍后在代码中我如何检查:

if(is_a_valid_static_object(bob)) {
    bob::yippie();
}

所以我没有得到:致命错误:第 3 行的 file.php 中找不到类 'bob'

4

2 回答 2

16

即使没有实例化类,您也可以检查特定方法的存在

echo method_exists( bob, 'yippie' ) ? 'yes' : 'no';

如果您想更进一步并验证“yippie”实际上是静态的,请使用反射 API(仅限 PHP5)

try {
    $method = new ReflectionMethod( 'bob::yippie' );
    if ( $method->isStatic() )
    {
        // verified that bob::yippie is defined AND static, proceed
    }
}
catch ( ReflectionException $e )
{
    //  method does not exist
    echo $e->getMessage();
}

或者,您可以结合这两种方法

if ( method_exists( bob, 'yippie' ) )
{
    $method = new ReflectionMethod( 'bob::yippie' );
    if ( $method->isStatic() )
    {
        // verified that bob::yippie is defined AND static, proceed
    }
}
于 2008-09-23T20:56:02.117 回答
8

bool class_exists( string $class_name [, bool $autoload ])

这个函数检查给定的类是否已经定义。

于 2008-09-23T20:42:44.740 回答