当前位置:编程学习 > php >>

PHP declare 之 strict_types=1 有什么意思

PHP中申明 declare(strict_types=1)的作用:  strict_types=1 及开启严格模式.默认是弱类型校验.具体严格模式和普通模式的区别见下面代码.

code1:
<?php
declare(strict_types=1);
 
function  foo():int{
    return 1.11;
}

echo foo();


code2:
<?php
    //declare(strict_types=1);
     
    function  foo():int{
        return 1.11;
    }
     

echo foo();


以上代码会怎样呢?
code1 抛出语法错误:

注意:declare 是会校验这个文件下所有使用的的函数,不管他是否是在declare指令文件中申明的!
code2 返回值为1(这里是由于php7新特性决定的);
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,