ฉันกำลังเขียนการสาธิต REST API ที่กำหนดเอง ตอนนี้มันสามารถคืนค่าตัวเลขและสตริงในการสาธิตของฉันได้ แต่ฉันต้องการให้ส่งคืนออบเจ็กต์ JSON เช่น REST API อื่น ๆ
ในการสาธิตของฉันฉันเรียก Magento 2 API (เช่นรับข้อมูลลูกค้า: http: //localhost/index.php/rest/V1/customers/1 ) ด้วย curl และส่งคืนสตริง JSON:
"{\" id \ ": 1, \" group_id \ ": 1, \" default_billing \ ": \" 1 \ ", \" created_at \ ": \" 2016-12-13 14: 57: 30 \ " , \ "updated_at \": \ "2016-12-13 15:20:19 \", \ "created_in \": \ "มุมมองร้านค้าเริ่มต้น \", \ "อีเมล \": \ "75358050@qq.com \ " \ "FirstName \": \ "azol \" \ "นามสกุล \": \ "หนุ่ม \" \ "store_id \": 1, \ "website_id \": 1, \ "ที่อยู่ \": [{ \ "id \": 1, \ "CUSTOMER_ID \": 1, \ "ภูมิภาค \": {\ "region_code \": \ "AR \" \ "ภูมิภาค \": \ "ราด \" \ "region_id \ ": 279} \" region_id \ ": 279 \" country_id \ ": \" RO \ "\ "ที่ \": [\ "abc \"] \ "โทรศัพท์ \": \" 111 \ ",\"รหัสไปรษณีย์\":\"1111 \" \ "เมือง \": \ "def \" \ "FirstName \": \ "azol \" \ "นามสกุล \": \ "หนุ่ม \" \ "default_billing \": จริง}] \ "disable_auto_group_change \": 0}"
การตอบสนองเป็นสตริง JSON แต่ปุ่มทั้งหมดมีเครื่องหมายทับอยู่ภายใน ฉันรู้ว่าฉันสามารถลบเครื่องหมายทับด้วยstr_replace
แต่มันเป็นวิธีที่โง่ มีวิธีอื่นในการส่งคืนวัตถุ JSON โดยไม่มีเครื่องหมายทับภายในคีย์หรือไม่
************ อัพเดท 2016.12.27 ************
ฉันวางรหัสทดสอบที่นี่:
$method = 'GET';
$url = 'http://localhost/index.php/rest/V1/customers/1';
$data = [
'oauth_consumer_key' => $this::consumerKey,
'oauth_nonce' => md5(uniqid(rand(), true)),
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_timestamp' => time(),
'oauth_token' => $this::accessToken,
'oauth_version' => '1.0',
];
$data['oauth_signature'] = $this->sign($method, $url, $data, $this::consumerSecret, $this::accessTokenSecret);
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $url,
CURLOPT_HTTPHEADER => [
'Authorization: OAuth ' . http_build_query($data, '', ','),
'Content-Type: application/json'
],
]);
$result = curl_exec($curl);
curl_close($curl);
// this code has slash still
//return stripslashes("hi i\" azol");
// has slashes still
//return stripcslashes("{\"id\":1,\"group_id\":1,\"default_billing\":\"1\",\"created_at\":\"2016-12-13 14:57:30\",\"updated_at\":\"2016-12-13 15:20:19\",\"created_in\":\"Default Store View\",\"email\":\"75358050@qq.com\",\"firstname\":\"azol\",\"lastname\":\"young\",\"store_id\":1,\"website_id\":1,\"addresses\":[{\"id\":1,\"customer_id\":1,\"region\":{\"region_code\":\"AR\",\"region\":\"Arad\",\"region_id\":279},\"region_id\":279,\"country_id\":\"RO\",\"street\":[\"abc\"],\"telephone\":\"111\",\"postcode\":\"1111\",\"city\":\"def\",\"firstname\":\"azol\",\"lastname\":\"young\",\"default_billing\":true}],\"disable_auto_group_change\":0}");
// has slashes still
//return json_encode(json_decode($result), JSON_UNESCAPED_SLASHES);
// this code will throw and expcetion:
// Undefined property: *****\*****\Model\Mycustom::$_response
//return $this->_response->representJson(json_encode($data));
return $result;
$json_string = stripslashes($result)
และreturn json_decode($json_string, true);
return json_encode($result, JSON_UNESCAPED_SLASHES);
?