Answers for "curl status codebin php"

PHP
1

get http code curl php

$info = curl_getinfo($ch, CURLINFO_HTTP_CODE);
		
curl_close($ch);
if ($info == 200){
  return json_decode($result);
}
Posted by: Guest on April-27-2022
0

get curl httcode php

$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
Posted by: Guest on April-13-2022

Browse Popular Code Answers by Language