From: Christian Weiske Date: Fri, 29 Nov 2019 17:27:54 +0000 (+0100) Subject: do not escape slashes in json X-Git-Tag: v1.0.0~27 X-Git-Url: https://git.cweiske.de/stouyapi.git/commitdiff_plain/1adc46e8fa60e7e7dff2dc4ca57376371adf79ab do not escape slashes in json --- diff --git a/bin/import-game-data.php b/bin/import-game-data.php index 2c7aee6..3d6545f 100755 --- a/bin/import-game-data.php +++ b/bin/import-game-data.php @@ -566,7 +566,7 @@ function writeJson($path, $data) } file_put_contents( $fullPath, - json_encode($data, JSON_PRETTY_PRINT) . "\n" + json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . "\n" ); }