mirror of
https://github.com/php/php-src.git
synced 2026-04-14 03:22:58 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
15 lines
320 B
PHP
15 lines
320 B
PHP
--TEST--
|
|
Bug #76704 (mb_detect_order return value varies based on argument type)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('mbstring')) die('skip mbstring extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(mb_detect_order('Foo, UTF-8'));
|
|
var_dump(mb_detect_order(['Foo', 'UTF-8']))
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(false)
|