ru_php/Zend/tests/strlen_deprecation_to_exception.phpt

18 lines
332 B
PHP

--TEST--
strlen() null deprecation warning promoted to exception
--FILE--
<?php
set_error_handler(function($_, $msg) {
throw new Exception($msg);
});
try {
strlen(null);
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
strlen(): Passing null to parameter #1 ($string) of type string is deprecated