php-src/ext/standard/tests/assert/assert_error4.phpt
Lars Strojny e658a91b3d assert() user message
Added 2nd, optional, param to assert. When passed in it will be added
to the printed warnings and passed as a 4th param to a callback. PR 150
by Lonny Kapelushnik
2012-08-31 19:04:53 +02:00

22 lines
488 B
PHP

--TEST--
assert() - basic - Test recoverable error
--INI--
assert.active = 1
assert.warning = 1
assert.callback = f1
assert.quiet_eval = 0
assert.bail = 0
error_reporting = -1
display_errors = 1
--FILE--
<?php
$sa = "0 $ 0";
var_dump($r2 = assert($sa, "Describing what was asserted"));
--EXPECTF--
Parse error: syntax error, unexpected '$' in %s(3) : assert code on line 1
Catchable fatal error: assert(): Failure evaluating code:
Describing what was asserted:"0 $ 0" in %s on line 3