File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / assert / assert_error.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 6 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
assert() - error - give assert nonsense string with quiet_eval on then off
--INI--
assert.active = 1
assert.warning = 1
assert.callback = f1
assert.bail = 0
assert.quiet_eval = 0
--FILE--
<?php
function f1() 
{
	echo "f1 called\n";
}

$sa = "threemeninaboat";

var_dump($r2=assert($sa));

var_dump($ra0 = assert_options(ASSERT_QUIET_EVAL, 1));

var_dump($r2=assert($sa));
--EXPECTF--
Notice: Use of undefined constant threemeninaboat - assumed 'threemeninaboat' in %s(9) : assert code on line 1
bool(true)
int(0)
bool(true)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>