Hello friends I am just learning about api and in this example I want to perform an automatic refresh to the request in order to get a different sentence every 5 seconds for that matter ... how do I do that?
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://matchilling-chuck-norris-jokes-v1.p.rapidapi.com/jokes/random",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"accept: application/json",
"x-rapidapi-host: matchilling-chuck-norris-jokes-v1.p.rapidapi.com",
"x-rapidapi-key: blabla"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
$arr = json_decode($response);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo "<pre>";
print_r($arr->value) ;
echo "<pre>";
}
question from:
https://stackoverflow.com/questions/65924867/how-to-refresh-value-from-api 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…