JSON は多くのプログラミング言語で使用できるため、次のような小規模なデータ転送に使用できます。 PHP は、JavaScript で使用するための JSON 文字列を出力します。 PHP では、 json_decode() を使用して標準化された文字列の文字列から JSON オブジェクトを解析し、 json_encode() を使用して JSON オブジェクトから標準化された文字列の文字列を生成できます。
例:
$json = '{"a":1, "b":2, "c":3, "d":4, "e":5 }';
var_dump(json_decode($json));
var_dump(json_decode($json,true));
出力:
オブジェクト(stdClass)#1 (5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int; )
["d"] => int(4)
["e"] => int(5)
}
array(5) {
["a"] => int; ["b"] => int(2)
["c"] => int(4)
["e"] => )
}
echo json_encode($arr);
出力:
{"a":1,"b":2,"c":3,"d":4,"e":5}
1. json_decode()、JSON への文字変換。通常、JavaScript によって送信されたデータを受信するときに使用されます。$s='{"ウェブ名":"homehf","url":"www.homehf.com","連絡先":{"qq":"744348666","メール":" nieweihf@163.com","xx":"xxxxxxx"}}';$web=json_decode($s);
2. json_encode()、JSON から文字への変換。これは通常、JSON オブジェクトを文字列に変換して Javascript に出力するために AJAX アプリケーションで使用され、データベースに保存するときにも使用されます。
$s='{"ウェブ名":"homehf","url":"www.homehf.com","連絡先":{"qq":"744348666","メール":" nieweihf@163.com","xx":"xxxxxxx"}}';$web=json_decode($s);
2 .PHP JSON を配列に
$s='{"webname":"homehf","url":"www.homehf.com","qq":"744348666"}';$web=json_decode($s ); //文字を JSON に変換します
http://www.bkjia.com/PHPjc/940338.html
$s='{"webname":"homehf","url":"www.homehf.com","contact":{"qq":"744348666","mail ":"nieweihf@163.com","xx":"xxxxxxx"}}';$web=json_decode($s);
$arr=json_to_array($web);
print_r($arr);
function json_to_array($web){
$arr=array();
foreach($web as $k=>$w){
if(is_object($w)) $arr[$k]=json_to_array($w ); //オブジェクトかどうかを判定
else $arr[$k]=$w;
}
return $arr;
}
?>