mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
14 lines
275 B
PHP
14 lines
275 B
PHP
--TEST--
|
|
Calling mb_check_encoding() without argument is deprecated
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(mb_check_encoding());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: mb_check_encoding(): Calling mb_check_encoding() without argument is deprecated in %s on line %d
|
|
bool(true)
|