Intro
Hi guys, I'm playing around with the CloudFlare API (CloudFlare is a service which enhances the performance of your website) and in order to change a DNS record through their API, I have to know the rec_id of the record I want to change.
What I want to do
The code below displays every single record from my test account. You can find the output here. If you search for testing1, you'll see the settings of this record, including the rec_id (which is, by the way, the first line in every record).
Now, I would like to know how to get the rec_id from a record without searching for it every single time I need to. So, is there a way to somehow search for the record (in this case 'testing1') and put the rec_id in a variable called $rec_id for further use?
The Code
load_recs();
function load_recs() {
$url = "https://www.cloudflare.com/api_json.html";
$data = array(
"a" => "rec_load_all",
"tkn" => "7c7adc006b54b99023fd3513da1bc3d6c883d",
"email" => "testing_cloudflare@icloud.com",
"z" => "testing.com"
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_FORBID_REUSE, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data );
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$test = curl_getinfo($ch);
$http_result = curl_exec($ch);
$error = curl_error($ch);
$http_code = curl_getinfo($ch ,CURLINFO_HTTP_CODE);
curl_close($ch);
$cloud_arr = json_decode($http_result,true);
if ($http_code != 200) {
print "Error: $error\n";
} else {
foreach($cloud_arr as $item) {
echo '<pre>'; var_dump($item);
}
}
}
Note
For the people who didn't know this, I use cURL to connect to the CloudFlare API. The response is in JSON, but it's transformed into an array.
foreach($cloud_arr->response->recs->objs as $item) { if($item->display_name == $name) { return $item->rec_id; }This returned therec_idby searching fordisplay_name. I hope anyone finds this useful. :) – Steef Jan 24 at 10:09