PHP에서는 구문이 각각 "json_encode($arr);" 및 "json_decode($json)"인 "json_encode()" 및 "json_decode()" 함수를 통해 json을 작동할 수 있습니다.
추천: "PHP Video Tutorial"
버전 5.2부터 PHP는 기본적으로 json_encode() 및 json_decode() 함수를 제공합니다. 전자는 인코딩에 사용되고 후자는 디코딩에 사용됩니다.
json_encode()
코드는 다음과 같습니다:$arr = array ('a'=>'a','b'=>'b','c'='c','d'=>'d','e'='e'); echo json_encode($arr);
class person { public $name; public $age; public $height; function __construct($name,$age,$height) { $this->name = $name; $this->age = $age; $this->height = $height; } } $obj = new person("zhangsan",20,100); $foo_json = json_encode($obj); echo $foo_json;
json_decode() ~ .
코드는 다음과 같습니다.
$json = '{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}'; var_dump(json_decode($json));
일반적으로 json_decode()는 항상 PHP 객체를 반환합니다.
배열로 변환:
코드는 다음과 같습니다.
$json = '{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}'; var_dump(json_decode($json,ture));
위 내용은 PHP에서 json 메소드를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!