这在 php.ini 中意味着什么?
assert.active = On
assert.bail = Off
它是如何运作的?
assert.active = On
assert.bail = Off
How does it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
assert.active = On
assert.bail = Off
它是如何运作的?
assert.active = On
assert.bail = Off
How does it work?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果
assert.active=on
,您可以在代码中调用assert('$x==1')
。如果失败(即 $x 不是 1),根据 assert.bail 的值,您的脚本将终止或收到警告。更多信息请参见 http://www.php.net/manual/en/function .assert.phpIf
assert.active=on
you can callassert('$x==1')
in your code. If it fails (i.e. $x is something else than 1), depending on the value of assert.bail your script will either terminate or you get a warning. See more in http://www.php.net/manual/en/function.assert.php来自 PHP 手册:
From the PHP Manual:
您始终可以从 php 用户手册中找到它
http://php.net/manual/en /info.configuration.php
assert.active boolean
启用assert()评估。
assert.bail boolean
断言失败时终止脚本执行。
You can always find it from php user manual
http://php.net/manual/en/info.configuration.php
assert.active boolean
Enable assert() evaluation.
assert.bail boolean
Terminate script execution on failed assertions.