php-src/ext/mbstring/tests/bug78609.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

19 lines
291 B
PHP

--TEST--
Bug #78609 (mb_check_encoding() no longer supports stringable objects)
--EXTENSIONS--
mbstring
--FILE--
<?php
class Foo
{
public function __toString()
{
return 'string_representation';
}
}
var_dump(mb_check_encoding(new Foo, 'UTF-8'));
?>
--EXPECT--
bool(true)