php-8.0.30-src/Zend/tests/assert/expect_014.phpt

13 lines
162 B
PHP

--TEST--
test failing assertion when disabled
--INI--
zend.assertions=0
assert.exception=1
--FILE--
<?php
assert(false);
var_dump(true);
?>
--EXPECT--
bool(true)