mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
14 lines
236 B
PHP
14 lines
236 B
PHP
--TEST--
|
|
assert_options() - unknown assert option.
|
|
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
assert_options(1000);
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
assert_options(): Argument #1 ($what) must be an ASSERT_* constant
|