declare(strict_types=1)跟不加有啥区别

PHP7中增加强类型校验支持,默认是弱类型转换

关闭情况下:

// declare(strict_types=1);

function val(): string {
return 1;
}

echo val();

返回: 1

打开情况下:

PHP Fatal error:  Uncaught TypeError: Return value of val() must be of the type string, integer returned in /test.php:6
此条目发表在 php异常, 涨姿势 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*


*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>