这在 php.ini 中意味着什么?

发布于 2024-08-16 06:40:04 字数 79 浏览 3 评论 0原文

assert.active = On

assert.bail = Off

它是如何运作的?

assert.active = On

assert.bail = Off

How does it work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

孤芳又自赏 2024-08-23 06:40:04

如果assert.active=on,您可以在代码中调用assert('$x==1')。如果失败(即 $x 不是 1),根据 assert.bail 的值,您的脚本将终止或收到警告。更多信息请参见 http://www.php.net/manual/en/function .assert.php

If assert.active=on you can call assert('$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

您的好友蓝忘机已上羡 2024-08-23 06:40:04

来自 PHP 手册

assert.active:启用assert()
评价。
断言.bail :
失败时终止脚本执行
断言。

From the PHP Manual:

assert.active: Enable assert()
evaluation.
assert.bail :
Terminate script execution on failed
assertions.

云柯 2024-08-23 06:40:04

您始终可以从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文