[PHP]PHP中申明 declare(strict_types=1)的做用

strict_types=1 針對參數類型開啓嚴格模式,進行數據類型檢驗,默認是弱類型校驗
哪一個文件寫了declare,哪一個文件中的全部代碼就須要檢查spa

declare(strict_types=1);
 
function  foo():int{
    return 1.11;
}
 
echo foo();

相關文章
相關標籤/搜索