PHP assert_options function

Like this blog? Consider exploring one of our sponsored banner ads...

assert_options

(PHP 4, PHP 5)

assert_options — Set/get the various assert flagsDescriptionmixed assert_options ( int what [, mixed value] )

Set the various assert() control options or just query
their current settings.

Parameters

what

Table 1. Assert Options

optionini-parameterdefaultdescriptionASSERT_ACTIVEassert.active1enable assert() evaluationASSERT_WARNINGassert.warning1issue a PHP warning for each failed assertionASSERT_BAILassert.bail0terminate execution on failed assertionsASSERT_QUIET_EVALassert.quiet_eval0 disable error_reporting during assertion expression
evaluation
ASSERT_CALLBACKassert.callback(NULL)user function to call on failed assertions

value

An optional new value for the option.


Return Values

Returns the original setting of any option or FALSE on errors.


About this entry