mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
Squashed commit of the following: commit8b45fa2acbAuthor: Dmitry Stogov <dmitry@zend.com> Date: Thu Jun 16 01:52:50 2016 +0300 Separate slow path of ZEND_RECV into a cold function. commit9e18895ee5Author: Dmitry Stogov <dmitry@zend.com> Date: Wed Jun 15 23:26:28 2016 +0300 Required argument can't be IS_UNDEF anymore. commit662db66e39Author: Dmitry Stogov <dmitry@zend.com> Date: Tue May 31 17:14:50 2016 +0300 Replace "Missing argument" warning by "Too few arguments" exception.
33 lines
799 B
PHP
33 lines
799 B
PHP
--TEST--
|
|
assert() - basic - Test that bailout works
|
|
--INI--
|
|
assert.active = 1
|
|
assert.warning = 1
|
|
assert.callback = f1
|
|
assert.quiet_eval = 1
|
|
assert.bail = 0
|
|
error_reporting = -1
|
|
display_errors = 1
|
|
--FILE--
|
|
<?php
|
|
function f1($script, $line, $message, $user_message)
|
|
{
|
|
echo "f1 called\n";
|
|
}
|
|
|
|
//bail out on error
|
|
var_dump($rao = assert_options(ASSERT_BAIL, 1));
|
|
var_dump($r2 = assert("0 != 0"));
|
|
echo "If this is printed BAIL hasn't worked";
|
|
--EXPECTF--
|
|
int(0)
|
|
|
|
Warning: assert(): Assertion "0 != 0" failed in %s on line 9
|
|
|
|
Fatal error: Uncaught Error: Too few arguments to function f1(), 3 passed and exactly 4 expected in %sassert_error2.php:2
|
|
Stack trace:
|
|
#0 [internal function]: f1('%s', 9, '0 != 0')
|
|
#1 %sassert_error2.php(9): assert('0 != 0')
|
|
#2 {main}
|
|
thrown in %sassert_error2.php on line 2
|