mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

Co-authored-by: Gina Peter Banyard <girgias@php.net> Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
14 lines
318 B
PHP
14 lines
318 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 since 8.3 in %s on line %d
|
|
assert_options(): Argument #1 ($option) must be an ASSERT_* constant
|