답변:
쉬운 peasy 레몬 squeezy : http://www.php.net/manual/en/function.json-encode.php
<?php
$arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5);
echo json_encode($arr);
?>
andyrusterholz at g-m-a-i-l dot c-o-m
위에서 언급 한 페이지에는 복잡한 중첩 배열을 처리 할 수 있는 게시물 이 있습니다 (귀하의 경우).
다음 json_encode
과 같이 PHP의 native를 사용하십시오 .
<?php
$arr = array(
array(
"region" => "valore",
"price" => "valore2"
),
array(
"region" => "valore",
"price" => "valore2"
),
array(
"region" => "valore",
"price" => "valore2"
)
);
echo json_encode($arr);
?>
업데이트 : 의견에 귀하의 질문에 대답합니다. 당신은 이것을 이렇게합니다 :
$named_array = array(
"nome_array" => array(
array(
"foo" => "bar"
),
array(
"foo" => "baz"
)
)
);
echo json_encode($named_array);
단순 : (중첩 된) PHP 배열을 만들고 호출 json_encode
하십시오. 숫자 형 배열은 JSON 목록 ( []
)으로, 연관 배열 및 PHP 개체는 객체 ( {}
) 로 변환됩니다 . 예:
$a = array(
array('foo' => 'bar'),
array('foo' => 'baz'));
$json = json_encode($a);
당신에게 제공합니다 :
[{"foo":"bar"},{"foo":"baz"}]
PHP에서 json을 만들 때마다 가야 할 가장 좋은 방법은 먼저 ASSOCIATIVE 배열의 값을 변환하는 것입니다.
그런 다음 단순히를 사용하여 인코딩하십시오 json_encode($associativeArray)
. PHP에서 json을 만드는 가장 좋은 방법이라고 생각합니다. PHP에서 sql 쿼리 결과 양식을 가져올 때마다 fetch_assoc
함수를 사용하여 값을 얻었으므로 연관 배열을 반환합니다.
$associativeArray = array();
$associativeArray ['FirstValue'] = 'FirstValue';
... 등
그 후.
json_encode($associativeArray);
<?php
$username=urldecode($_POST['log_user']);
$user="select * from tbl_registration where member_id= '".$username."' ";
$rsuser = $obj->select($user);
if(count($rsuser)>0)
{
// (Status if 2 then its expire) (1= use) ( 0 = not use)
$cheknew="select name,ldate,offer_photo from tbl_offer where status=1 ";
$rscheknew = $obj->selectjson($cheknew);
if(count($rscheknew)>0)
{
$nik=json_encode($rscheknew);
echo "{\"status\" : \"200\" ,\"responce\" : \"201\", \"message\" : \"Get Record\",\"feed\":".str_replace("<p>","",$nik). "}";
}
else
{
$row2="No Record Found";
$nik1=json_encode($row2);
echo "{\"status\" : \"202\", \"responce\" : \"604\",\"message\" : \"No Record Found \",\"feed\":".str_replace("<p>","",$nik1). "}";
}
}
else
{
$row2="Invlid User";
$nik1=json_encode($row2);
echo "{\"status\" : \"404\", \"responce\" : \"602\",\"message\" : \"Invlid User \",\"feed\":".str_replace("<p>","",$nik1). "}";
}
?>
내 코드에 사용할 조잡하고 간단한 jsonOBJ 클래스를 만들었습니다. PHP는 JavaScript / Node do와 같은 json 함수를 포함하지 않습니다. 다르게 반복해야하지만 도움이 될 수 있습니다.
<?php
// define a JSON Object class
class jsonOBJ {
private $_arr;
private $_arrName;
function __construct($arrName){
$this->_arrName = $arrName;
$this->_arr[$this->_arrName] = array();
}
function toArray(){return $this->_arr;}
function toString(){return json_encode($this->_arr);}
function push($newObjectElement){
$this->_arr[$this->_arrName][] = $newObjectElement; // array[$key]=$val;
}
function add($key,$val){
$this->_arr[$this->_arrName][] = array($key=>$val);
}
}
// create an instance of the object
$jsonObj = new jsonOBJ("locations");
// add items using one of two methods
$jsonObj->push(json_decode("{\"location\":\"TestLoc1\"}",true)); // from a JSON String
$jsonObj->push(json_decode("{\"location\":\"TestLoc2\"}",true));
$jsonObj->add("location","TestLoc3"); // from key:val pairs
echo "<pre>" . print_r($jsonObj->toArray(),1) . "</pre>";
echo "<br />" . $jsonObj->toString();
?>
출력합니다 :
Array
(
[locations] => Array
(
[0] => Array
(
[location] => TestLoc1
)
[1] => Array
(
[location] => TestLoc2
)
[2] => Array
(
[location] => TestLoc3
)
)
)
{"locations":[{"location":"TestLoc1"},{"location":"TestLoc2"},{"location":"TestLoc3"}]}
반복하려면 일반 객체로 변환하십시오.
$myObj = $jsonObj->toArray();
그때:
foreach($myObj["locations"] as $locationObj){
echo $locationObj["location"] ."<br />";
}
출력 :
TestLoc1
TestLoc2
TestLoc3
직접 접근 :
$location = $myObj["locations"][0]["location"];
$location = $myObj["locations"][1]["location"];
실용적인 예 :
// return a JSON Object (jsonOBJ) from the rows
function ParseRowsAsJSONObject($arrName, $rowRS){
$jsonArr = new jsonOBJ($arrName); // name of the json array
$rows = mysqli_num_rows($rowRS);
if($rows > 0){
while($rows > 0){
$rd = mysqli_fetch_assoc($rowRS);
$jsonArr->push($rd);
$rows--;
}
mysqli_free_result($rowRS);
}
return $jsonArr->toArray();
}