mirror of
https://github.com/php/php-src.git
synced 2026-03-25 08:42:29 +01:00
22 lines
476 B
PHP
22 lines
476 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, %s 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
|
|
|