mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +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
585 B
PHP
15 lines
585 B
PHP
--TEST--
|
|
Test json_encode() function : basic functionality with UTF8 string input
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("json")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing json_encode() : basic functionality with UTF-8 input***\n";
|
|
|
|
$utf8_string = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXvvJbvvJfvvJjvvJnjgII=');
|
|
var_dump(json_encode($utf8_string));
|
|
|
|
?>
|
|
--EXPECT--
|
|
*** Testing json_encode() : basic functionality with UTF-8 input***
|
|
string(103) ""\u65e5\u672c\u8a9e\u30c6\u30ad\u30b9\u30c8\u3067\u3059\u300201234\uff15\uff16\uff17\uff18\uff19\u3002""
|