mirror of
https://github.com/php/php-src.git
synced 2025-01-08 12:04:24 +08:00
32a1ebbd43
These are no longer needed after https://wiki.php.net/rfc/always_enable_json Closes GH-5637
11 lines
179 B
PHP
11 lines
179 B
PHP
--TEST--
|
|
json_decode() tests
|
|
--FILE--
|
|
<?php
|
|
var_dump(json_encode('a/b'));
|
|
var_dump(json_encode('a/b', JSON_UNESCAPED_SLASHES));
|
|
?>
|
|
--EXPECT--
|
|
string(6) ""a\/b""
|
|
string(5) ""a/b""
|