我想獲取數據並更新某些行的數據。 這個代碼retrive所有數據來自表解析PHP Rest API更新查詢不起作用
function updateStatus(){
$url = 'https://api.parse.com/1/classes/xxxxxxx';
$appId = 'xxxxxxxxx';
$restKey = 'xxxxxxxxx';
$headers = array(
"X-Parse-Application-Id: " . $appId,
"X-Parse-REST-API-Key: " . $restKey
);
$queryParse = '{"date":"21-04-2016"}';
$rest = curl_init($url.$queryParse);
curl_setopt($rest,CURLOPT_URL,$url);
curl_setopt($rest,CURLOPT_HTTPHEADER,$headers);
curl_setopt($rest,CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($rest,CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($rest);
curl_close($rest);
return $response;
}
和查詢解析也很喜歡
$queryParse = urlencode('where={"date":"21-04-2016","time":07:00 to 10:00}');
但都沒有工作。
你必須比「不工作」更具體。怎麼了?你認爲應該發生什麼? (你可以[編輯]你的問題。) –
更新了問題。此代碼檢索所有數據。 – Rajpoot