여기 내 코드가 있습니다.
$url = 'url_to_post';
$data = array(
"first_name" => "First name",
"last_name" => "last name",
"email"=>"email@gmail.com",
"addresses" => array (
"address1" => "some address",
"city" => "city",
"country" => "CA",
"first_name" => "Mother",
"last_name" => "Lastnameson",
"phone" => "555-1212",
"province" => "ON",
"zip" => "123 ABC"
)
);
$data_string = json_encode($data);
$ch=curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, array("customer"=>$data_string));
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER,
array(
'Content-Type:application/json',
'Content-Length: ' . strlen($data_string)
)
);
$result = curl_exec($ch);
curl_close($ch);
그리고 다른 페이지에서 게시물 데이터를 검색하고 있습니다.
print_r ($_POST);
출력
HTTP/1.1 200 OK
Date: Mon, 18 Jun 2012 07:58:11 GMT
Server: Apache
X-Powered-By: PHP/5.3.6
Vary: Accept-Encoding
Connection: close
Content-Type: text/html
Array ( )
따라서 자체 서버에서도 적절한 데이터를 얻지 못합니다. 빈 배열입니다. http://docs.shopify.com/api/customer#create 에서와 같이 json을 사용하여 REST를 구현하고 싶습니다.
code
$ data_string = json_encode ($ data); code
주석에 코드를 작성하는 방법? 주석에 줄 바꿈을 쓸 수 없으므로 코드를 작성하는 방법은 무엇입니까?
$data
를$data_string
사용하여 변환하지 못했습니다.json_encode()
이 코드 줄을 보지 마십시오 ...