Logo

Programming-Idioms

History of Idiom 123 > diff from v12 to v13

Edit summary for version 13 by Ayesh:
New PHP implementation by user [Ayesh]

Version 12

2019-09-27, 00:57:46

Version 13

2019-09-27, 06:28:33

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Code
assert(_isConsistent);
Comments bubble
isConsistent can be any PHP snippet without string quotes.

They will be evaluated only if `assert.active` PHP ini value is enabled, or `assert_options()` is called before.
Doc URL
https://www.php.net/manual/en/function.assert.php