| Current Path : /var/www/html/nadineandmiabeauty/admin/classes/ |
| Current File : /var/www/html/nadineandmiabeauty/admin/classes/curl.php |
<?php
class curl{
public static function curlPost($url,$data){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close ($ch);
$response = json_decode($response,true);
return $response;
}
public static function curlGet($url,$data){
curl_setopt($ch, CURLOPT_URL, $url."?".http_build_query($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close ($ch);
$response = json_decode($json,true);
return $response;
}
}
?>