Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
89 views
in Technique[技术] by (71.8m points)

php - How to refresh value from api

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...