mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
15 lines
308 B
PHP
15 lines
308 B
PHP
--TEST--
|
|
assert_options() - unknown assert option.
|
|
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
assert_options(1000);
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function assert_options() is deprecated in %s on line %d
|
|
assert_options(): Argument #1 ($option) must be an ASSERT_* constant
|