php-src/ext/standard/tests/assert/assert_options_error.phpt
Tim Düsterhus 29f98e7485
Replace @deprecated by #[\Deprecated] for internal functions / class constants (#14750)
Co-authored-by: Gina Peter Banyard <girgias@php.net>
Co-authored-by: Niels Dossche <7771979+nielsdos@users.noreply.github.com>
2024-07-10 16:47:31 +02:00

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