文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

php中declare(strict_types=1)的有效范围是多少

2023-06-29 01:17

关注

这篇文章主要介绍“php中declare(strict_types=1)的有效范围是多少”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“php中declare(strict_types=1)的有效范围是多少”文章能帮助大家解决问题。

关于declare(strict_types=1)的有效范围

declare(strict_type=1);是php7引入的严格类型检查模式的指定语法

单个文件时strict_types应写在哪里

基本语法

<?phpfunction add(int $a, int $b): int{    return $a + $b;}var_dump(add(1.0, 2.0));

在此状态下执行独立时,输出int(3)

我们提供的是double类型,但php7能很好的处理它,和php5时代没什么区别

做了如下变更

<?phpdeclare(strict_types=1);    //加入这句function add(int $a, int $b): int{    return $a + $b;}var_dump(add(1.0, 2.0));

TypeError产生,如下

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:4Stack 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语法不能写在脚本的中间,如下写法是错误的

<?phpfunction add(int $a, int $b): int{    return $a + $b;}declare(strict_types=1);var_dump(add(1.0, 2.0));

产生如下错误

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,而是编译过程中产生的错误

同样,与上述例子相似的位置,也不能使用如下语法

<?phpdeclare(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脚本在开头声明严格模式

A.php脚本<?phpdeclare(strict_types=1);function add(int $a, int $b): int{    return $a + $b;}

A.phpB.php文件require,如下

B.php脚本<?phprequire 'A.php';var_dump(add(1.0, 2.0));    //注意这里键入的是1.0和2.0浮点数,而A.php声明需要int

执行结果

$ php B.phpint(3)

什么!!!!居然能够执行而不报错!!!!!
原来是B.php并没有声明strict_types,所以对于B脚本来说,是默认的松散模式

也就是说,对于strict_types有以下的行为

上述解释就如如下代码所示,理论上A.php文件的严格模式已经关闭了,然而仅仅是B.php文件设定了declare(strict_types=1);,那么即使A.php没有设定严格模式,但A.phpB.php引用了,就对A.php使用严格模式

A.php<?phpfunction add(int $a, int $b): int{    return $a + $b;}
B.php<?phpdeclare(strict_types=1);require 'A.php';var_dump(add(1.0, 2.0));
$ php B.phpPHP 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<?phprequire_once 'B.php';var_dump(add(1.0, 2.0));var_dump(add2(1.0, 2.0));
B.php<?phpdeclare(strict_types=1);    //在函数定义部分声明require_once 'A.php';function add2($a, $b){    return add($a, $b);}
A.php<?phpfunction 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

也就是说,declare(strict_types=1);会按照如下方式变化

在主体部分中指定strict_types

不在B.php中途位置指定strict_types,而在主要部分即C.php指定,strict模式对所有的都有效吗?然而,事实上strict模式只有在引用的地方有效

C.php → B.php → A.php
C.php<?phpdeclare(strict_types=1);    //主体部分声明require_once 'B.php';var_dump(add2(1.0, 2.0));
B.php<?phprequire_once 'A.php';function add2($a, $b){    return add($a, $b);}
A.php<?phpfunction 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(); // 执行非严格模式    }}

关于“php中declare(strict_types=1)的有效范围是多少”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯