《Disney +》 迪士尼、Marvel、彼思、星球大戰…  【悲報】這次真的倒了…《櫻花革命 ~綻放的少女們~》服務即將結束   《The Elder Scrolls Online》主機增強版6月8日登陸PS5   第15回 TETRIS®王者盃將與瑪利歐聯名!   《Uncharted: Legacy of Thieves Collection》將登陸PS5主機與PC平台   全新《Subnautica: Below Zero》遊戲畫面在「State of Play」公開   《Nour》:跟食物的副主廚——互動式原聲配樂——同工同樂   魔物獵人崛起發售在即!3/8、3/9連續2日舉辦「魔物獵人」系列線上數位活動!   索尼克的完全新作《索尼克未知邊境》將於2022年冬季登場! 

PHP 強制使用「強型態」的模式

商業

PHP 7 之後,function、Class 等等都可以指定型態、回傳的型態,但是雖然寫 int,傳進來還是可以傳 float,要怎麼強制型態不對就直接出錯誤呢?

function 指定型態完整寫法


PHP 的型態:PHP: Type declarations

PHP 強制使用「強型態」的模式

型態已經指定 int、float 了,為何強型態要直接錯誤,而不是繼續執行呢?

下述範例可以參考看看:(範例取自此篇:php 7.2 - What do strict types do in PHP?)


在上述寫法,執行結果會是 3,而不是 3.4。這種情況更適合「直接錯誤」不要執行 (註:將所有型態 int、float 都拿掉,反而結果是正確的 3.4)。

要如何指定強型態,有錯誤的輸入、輸出直接噴錯誤呢?

PHP 7 之後,只要在程式的最上方宣告下述:

  • declare(strict_types = 1);

文件可見:

再來程式只要型態不對,就會直接報錯誤,如下述範例:

回傳型態錯誤


若 strict_types = 0,回傳值如下:

int(3)
int(3)

註:第二個原本應該是 float(3.5),回傳值被強制轉成整數回傳,所以變成 3

但是若 strict_types = 1,就會噴下述錯誤:

int(3)
PHP Fatal error:  Uncaught TypeError: Return value of sum() must be of the type integer, float returned in /tmp/test.php:5
Stack trace:
#0 /tmp/test.php(9): sum(1, 2.5)
#1 {main}
    thrown in /tmp/test.php on line 5

傳入型態錯誤


若 strict_types = 0,回傳值如下:

string(3) "123"

但是若 strict_types = 1,就會噴下述錯誤:

PHP Fatal error:  Uncaught TypeError: Argument 1 passed to get_string() must be of the type string, integer given, called in /tmp/test.php on line 8 and defined in /tmp/test.php:4
Stack trace:
#0 /tmp/test.php(8): get_string(12)
#1 {main}
   thrown in /tmp/test.php on line 4

相關網頁

Tsung

隨機商業新聞

Addidas