PHP 5.3.0 uygulanan json_encode
bitmask bayraklar, burada ben dize taklit çalışıyorum:
$s = addslashes('O\'Rei"lly'); // O\'Rei\"lly
json_encode($s, JSON_HEX_APOS | JSON_HEX_QUOT)
şu çıkışlar yapıyor:
"O\\\u0027Rei\\\u0022lly"
Ve ben şu anda 5.3.0 daha yaşlı PHP sürümlerinde bu yapıyorum:
str_replace(array('\\"', "\\'"), array('\\u0022', '\\\u0027'), json_encode($s))
or
str_replace(array('\\"', '\\\''), array('\\u0022', '\\\u0027'), json_encode($s))
Hangi doğru aynı sonucu verir:
"O\\\u0027Rei\\\u0022lly"
Ben sorun anlama yaşıyorum why do I need to replace single quotes ('\\\''
ya da "\\'"
[surrounding quotes excluded]) '\\\u0027'
ile değil, sadece '\\u0027'
strong>.
Here is the code that I'm having trouble porting to PHP < 5.3:
if (get_magic_quotes_gpc() && version_compare(PHP_VERSION, '6.0.0', '<'))
{
/* JSON_HEX_APOS and JSON_HEX_QUOT are availiable */
if (version_compare(PHP_VERSION, '5.3.0', '>=') === true)
{
$_GET = json_encode($_GET, JSON_HEX_APOS | JSON_HEX_QUOT);
$_POST = json_encode($_POST, JSON_HEX_APOS | JSON_HEX_QUOT);
$_COOKIE = json_encode($_COOKIE, JSON_HEX_APOS | JSON_HEX_QUOT);
$_REQUEST = json_encode($_REQUEST, JSON_HEX_APOS | JSON_HEX_QUOT);
}
/* mimic the behaviour of JSON_HEX_APOS and JSON_HEX_QUOT */
else if (extension_loaded('json') === true)
{
$_GET = str_replace(array(), array('\\u0022', '\\u0027'), json_encode($_GET));
$_POST = str_replace(array(), array('\\u0022', '\\u0027'), json_encode($_POST));
$_COOKIE = str_replace(array(), array('\\u0022', '\\u0027'), json_encode($_COOKIE));
$_REQUEST = str_replace(array(), array('\\u0022', '\\u0027'), json_encode($_REQUEST));
}
$_GET = json_decode(stripslashes($_GET));
$_POST = json_decode(stripslashes($_POST));
$_COOKIE = json_decode(stripslashes($_COOKIE));
$_REQUEST = json_decode(stripslashes($_REQUEST));
}