开发者

What does this mean in php.ini?

开发者_JAVA百科assert.active = On

assert.bail = Off

How does it work?


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


From the PHP Manual:

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


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜