本文给大家介绍关于关于declare(strict_types=1)的有效范围,希望对需要的朋友有所帮助!
关于declare(strict_types=1)的有效范围
strict_types
应写在哪里在此状态下执行独立时,输出
int(3)
我们提供的是
double
类型,但php7
能很好的处理它,和php5
时代没什么区别做了如下变更
有
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: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
语法不能写在脚本的中间,如下写法是错误的产生如下错误
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
,而是编译过程中产生的错误同样,与上述例子相似的位置,也不能使用如下语法
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脚本
A.php
被B.php
文件require
,如下B.php脚本执行结果
$ 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.phpB.php$ 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.phpB.phpA.php执行结果如下
$ 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.phpB.phpA.php$ php C.php int(3)
只有在写declare
的文件的执行部分才会执行严格模式,该文件中调用的其它函数(其它文件中的函数)也会被影响
也就是说,哪个文件写了declare
,哪个文件中的所有代码就需要检查,即使其中的代码来自其它文件,同时,即使这个需要检查的文件还被其它文件调用,也不改变该文件需要检查的事实
Foo.php bar = new Bar; // 执行严格模式 } public function aaa() { $this->bar->aaa(); // 执行严格模式 } }
Bar.php moo = new Moo; // 执行非严格模式 } public function aaa() { $this->moo->aaa(); // 执行非严格模式 } }
本文题目:聊聊有关declare(strict_types=1)的有效范围
文章转载:http://www.mswzjz.cn/qtweb/news22/366222.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能