mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
These are no longer needed after https://wiki.php.net/rfc/always_enable_json Closes GH-5637
18 lines
370 B
PHP
18 lines
370 B
PHP
--TEST--
|
|
Bug #73254 (Incorrect indentation generated by json_encode() with JSON_PRETTY_PRINT)
|
|
--FILE--
|
|
<?php
|
|
|
|
echo json_encode([json_encode([1], JSON_PRETTY_PRINT)]), "\n";
|
|
|
|
$fp = fopen('php://temp', 'r');
|
|
$data = ['a' => $fp];
|
|
echo json_encode($data), "\n";
|
|
echo json_encode([json_encode([1], JSON_PRETTY_PRINT)]), "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
["[\n 1\n]"]
|
|
|
|
["[\n 1\n]"]
|