php自訂json_encode()和json_decode()函數

來源:互聯網
上載者:User

標籤:style   blog   color   io   使用   ar   for   資料   div   

json資料大家應該遇到過,json_encode()和json_decode()是php5.0以後加上的內建函數,如果低版本要使用,需加擴充,很多時候我們無權改變伺服器的配置,我們只能通過自訂函數來實現這兩個函數,其實所有的系統內建函數,基本上我們都是可以自己來定義的。

if (!function_exists(‘json_encode‘)) {function json_encode($array = array()) {if(!is_array($array)) return null;$json = "";$i = 1;$comma = ",";$count = count($array);foreach($array as $k=>$v){if($i==$count) $comma = "";if(!is_array($v)){$v = addslashes($v);$json .= ‘"‘.$k.‘":"‘.$v.‘"‘.$comma;}else{$json .= ‘"‘.$k.‘":‘.json_encode($v).$comma;}$i++;}$json = ‘{‘.$json.‘}‘;return $json;}}if (!function_exists(‘json_decode‘)) {function json_decode($json, $assoc = true) {$comment = false;$out     = ‘$x=‘;$json = preg_replace(‘/:([^"}]+?)([,|}])/i‘, ‘:"\1″\2′, $json);for ($i=0; $i<strlen($json); $i++) {if (!$comment) {if (($json[$i] == ‘{‘) || ($json[$i] == ‘[‘)) {$out .= ‘array(‘;}elseif (($json[$i] == ‘}‘) || ($json[$i] == ‘]‘)) {$out .= ‘)‘;}elseif ($json[$i] == ‘:‘) {$out .= ‘=>‘;}elseif ($json[$i] == ‘,‘) {$out .= ‘,‘;}elseif ($json[$i] == ‘"‘) {$out .= ‘"‘;}}else $out .= $json[$i] == ‘$‘ ? ‘\$‘ : $json[$i];if ($json[$i] == ‘"‘ && $json[($i-1)] != ‘\\‘)  $comment = !$comment;}eval($out. ‘;‘);return $x;}}

 

php自訂json_encode()和json_decode()函數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.