mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

These are no longer needed after https://wiki.php.net/rfc/always_enable_json Closes GH-5637
10 lines
179 B
PHP
10 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""
|