第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

php是弱類型語(yǔ)言,catch中為什么要寫Exception $e ,而不是直接寫$e?

php是弱類型語(yǔ)言,catch中為什么要寫Exception $e ,而不是直接寫$e?

PHP
叮當(dāng)貓咪 2023-05-02 17:13:28
<?php  //創(chuàng)建可拋出一個(gè)異常的函數(shù)  function checkNum($number)    {    if($number>1)     {     throw new Exception("Value must be 1 or below");     }    return true;    }   //在 "try" 代碼塊中觸發(fā)異常  try    {    checkNum(2);    //If the exception is thrown, this text will not be shown    echo 'If you see this, the number is 1 or below';    }   //捕獲異常  catch(**Exception $e**)    {    echo 'Message: ' .$e->getMessage();    }   ?>
查看完整描述

1 回答

?
慕田峪7331174

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊

異常本來(lái)就是以類型為基礎(chǔ)的啊

PHP5開(kāi)始, 可以對(duì)函數(shù)參數(shù)進(jìn)行類型約束:

<?php//如下面的類class MyClass{    /**
     * 測(cè)試函數(shù)
     * 第一個(gè)參數(shù)必須為類OtherClass的一個(gè)對(duì)象
     */
    public function test(OtherClass $otherclass) {        echo $otherclass->var;
    }    /**
     * 另一個(gè)測(cè)試函數(shù)
     * 第一個(gè)參數(shù)必須為數(shù)組 
     */
    public function test_array(array $input_array) {        print_r($input_array);
    }
}//另外一個(gè)類class OtherClass {    public $var = 'Hello World';
}

類型約束只支持對(duì)象 和 數(shù)組(php 5.1之后)兩種類型。而不支持整型 和 字符串類型。


查看完整回答
反對(duì) 回復(fù) 2023-05-04
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)