mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
13 lines
238 B
PHP
13 lines
238 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 ($option) must be an ASSERT_* constant
|