declare(strict_type=1);是php7引入的
嚴格類型檢查模式
的指定語法
strict_types
應寫在哪裏<?php function add(int $a, int $b): int { return $a + $b; } var_dump(add(1.0, 2.0));
在此狀態下執行獨立時,輸出int(3)
php
咱們提供的是double
類型,但php7
能很好的處理它,和php5
時代沒什麼區別php7
作了以下變動函數
<?php declare(strict_types=1); //加入這句 function add(int $a, int $b): int { return $a + $b; } var_dump(add(1.0, 2.0));
有TypeError
產生,以下ui
PHP Fatal error: Uncaught TypeError: Argument 1 passed to add() must be of the type integer, float given, called in /Users/hiraku/sandbox/stricttypes/A.php on line 9 and defined in /Users/hiraku/sandbox/stricttypes/A.php:4 Stack trace: #0 /Users/hiraku/sandbox/stricttypes/A.php(9): add(1, 2) #1 {main} thrown in /Users/hiraku/sandbox/stricttypes/A.php on line 4
strict_types
不能寫在腳本中間declare
語法不能寫在腳本的中間,以下寫法是錯誤的this
<?php function add(int $a, int $b): int { return $a + $b; } declare(strict_types=1); var_dump(add(1.0, 2.0));
產生以下錯誤code
PHP Fatal error: strict_types declaration must be the very first statement in the script in /Users/hiraku/sandbox/stricttypes/A.php on line 7
Fatal error
產生,這甚至不是Throwable
,而是編譯過程當中產生的錯誤ip
一樣,與上述例子類似的位置,也不能使用以下語法io
<?php declare(strict_types=1) { //... }
PHP Fatal error: strict_types declaration must not use block mode in /Users/hiraku/sandbox/stricttypes/A.php on line 2
strict_types
如何產生做用以下代碼編譯
A.php
腳本在開頭聲明嚴格模式function
A.php腳本 <?php declare(strict_types=1); function add(int $a, int $b): int { return $a + $b; }
A.php
被B.php
文件require
,以下
B.php腳本 <?php require 'A.php'; var_dump(add(1.0, 2.0)); //注意這裏鍵入的是1.0和2.0浮點數,而A.php聲明須要int
執行結果
$ php B.php int(3)
什麼!!!!竟然可以執行而不報錯!!!!!
原來是B.php
並無聲明strict_types
,因此對於B腳原本說,是默認的鬆散模式
也就是說,對於strict_types
有如下的行爲
declare(strict_types=1);
的語法自己在A.php
文件中完成,而被B.php
文件require
,而B.php
並無定義嚴格模式,那麼執行require
的文件(B.php
)不會變成嚴格模式上述解釋就如以下代碼所示,理論上A.php
文件的嚴格模式已經關閉了,然而僅僅是B.php
文件設定了declare(strict_types=1);
,那麼即便A.php
沒有設定嚴格模式,但A.php
被B.php
引用了,就對A.php
使用嚴格模式
A.php <?php function add(int $a, int $b): int { return $a + $b; }
B.php <?php declare(strict_types=1); require 'A.php'; var_dump(add(1.0, 2.0));
$ php B.php PHP Fatal error: Uncaught TypeError: Argument 1 passed to add() must be of the type integer, float given, called in /Users/hiraku/sandbox/stricttypes/B.php on line 4 and defined in /Users/hiraku/sandbox/stricttypes/A.php:2
declare(strict_types=1);
的做用declare(strict_types=1);
再增長一個require,試試3個文件嵌套
C.php → B.php → A.php
C.php <?php require_once 'B.php'; var_dump(add(1.0, 2.0)); var_dump(add2(1.0, 2.0));
B.php <?php declare(strict_types=1); //在函數定義部分聲明 require_once 'A.php'; function add2($a, $b) { return add($a, $b); }
A.php <?php function add(int $a, int $b): int { return $a + $b; }
執行結果以下
$ php C.php int(3) PHP Fatal error: Uncaught TypeError: Argument 1 passed to add() must be of the type integer, float given, called in /Users/hiraku/sandbox/stricttypes/B.php on line 7 and defined in /Users/hiraku/sandbox/stricttypes/A.php:2
var_dump(add(1.0, 2.0));
能正確執行var_dump(add2(1.0, 2.0));
產生TypeError錯誤也就是說,declare(strict_types=1);
會按照以下方式變化
B.php
使用了strict_types=1
,同時B.php
調用了A.php
,因此A.php
能起做用)不在B.php中途位置指定strict_types,而在主要部分即C.php指定,strict模式對全部的都有效嗎?然而,事實上strict模式只有在引用的地方有效
C.php → B.php → A.php
C.php <?php declare(strict_types=1); //主體部分聲明 require_once 'B.php'; var_dump(add2(1.0, 2.0));
B.php <?php require_once 'A.php'; function add2($a, $b) { return add($a, $b); }
A.php <?php function add(int $a, int $b): int { return $a + $b; }
$ php C.php int(3)
只有在寫declare
的文件的執行部分纔會執行嚴格模式,該文件中調用的其它函數(其它文件中的函數)也會被影響
也就是說,哪一個文件寫了declare
,哪一個文件中的全部代碼就須要檢查,即便其中的代碼來自其它文件,同時,即便這個須要檢查的文件還被其它文件調用,也不改變該文件須要檢查的事實
Foo.php <?php // 這個文件的strict有效 declare(strict_types=1); class Foo { private $bar; public function __construct() { $this->bar = new Bar; // 執行嚴格模式 } public function aaa() { $this->bar->aaa(); // 執行嚴格模式 } }
Bar.php <?php // 這個文件strict無效 class Bar { private $moo; public function __construct() { $this->moo = new Moo; // 執行非嚴格模式 } public function aaa() { $this->moo->aaa(); // 執行非嚴格模式 } }