mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00

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
21 lines
488 B
PHP
21 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
|
|
|