亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP怎么判斷類是否存在

發布時間:2020-06-24 14:40:43 來源:億速云 閱讀:210 作者:Leah 欄目:編程語言

PHP怎么判斷類是否存在?針對這個問題,這篇文章給出了相對應的分析和解答,希望能幫助更多想解決這個問題的朋友找到更加簡單易行的辦法。

在PHP中可以使用“class_exists()”函數檢測類是否存,該函數的作用是檢查類是否已定義,其用法為“class_exists($class_name)”,其參數“$class_name”代表要檢測的類名。

示例代碼

<?php
// 使用前檢查類是否存在
if (class_exists('MyClass')) {
    $myclass = new MyClass();
}

?>
<?php
/**
* Set my include path here
*/
$include_path = array( '/include/this/dir', '/include/this/one/too' );
set_include_path( $include_path );
spl_autoload_register();
/**
* Assuming I have my own custom exception handler (MyException) let's
* try to see if a file exists.
*/
try {
    if( ! file_exists( 'myfile.php' ) ) {
        throw new MyException('Doh!');
    }
    include( 'myfile.php' );
}
catch( MyException $e ) {
    echo $e->getMessage();
}
/**
* The above code either includes myfile.php or throws the new MyException
* as expected. No problem right? The same should be true of class_exists(),
* right? So then...
*/
$classname = 'NonExistentClass';
try {
    if( ! class_exists( $classname ) ) {
        throw new MyException('Double Doh!');
    }
    $var = new $classname();
}
catch( MyException $e ) {
    echo $e->getMessage();
}
/**
* Should throw a new instance of MyException. But instead I get an
* uncaught LogicException blah blah blah for the default Exception
* class AND MyException. I only catch MyException so we've got on
* uncaught resulting in the dreaded LogicException error.
*/
?>

關于PHP判斷類是否存在的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

泸定县| 大同市| 宁明县| 酉阳| 黔江区| 河源市| 大石桥市| 博野县| 桑日县| 固安县| 邓州市| 昭觉县| 涿州市| 瓦房店市| 来凤县| 泗水县| 沙坪坝区| 共和县| 延安市| 右玉县| 黑河市| 马鞍山市| 沾化县| 龙江县| 台安县| 双江| 镇雄县| 贺州市| 东乌珠穆沁旗| 宁波市| 新晃| 个旧市| 连云港市| 融水| 汕头市| 泰州市| 山丹县| 榆树市| 通山县| 宜州市| 大姚县|