class Api{ private $base='https://dramabox.dramabos.online/api/v1'; private $code='A70E64223EE2909F294AA4402EEBE83A'; public function get($endpoint,$params=[]){ $params['lang']='in'; $params['code']=$this->code; $url=$this->base.'/'.$endpoint.'?'.http_build_query($params); $ch=curl_init(); curl_setopt_array($ch,[ CURLOPT_URL=>$url, CURLOPT_RETURNTRANSFER=>true, CURLOPT_FOLLOWLOCATION=>true, CURLOPT_SSL_VERIFYPEER=>false, CURLOPT_TIMEOUT=>30, CURLOPT_HTTPHEADER=>[ 'Accept: application/json', 'User-Agent: Mozilla/5.0' ] ]); $res=curl_exec($ch); curl_close($ch); return json_decode($res,true); } }