<?php $string = ''; for ($i=0; $i < 128; $i++) { $string .= chr($i); } $encoded = json_encode($string, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_AMP | JSON_HEX_QUOT); $decoded =json_decode($encoded, TRUE); var_dump($string === $decoded);
You have javascript disabled. You will not be able to edit any code.