function getcURLRequest( $url , $postData = array (), $headers = array ( "Content-Type: application/json" )) { $post_data_string = json_encode( $postData , JSON_UNESCAPED_SLASHES); $ch = curl_init( $url ); curl_setopt( $ch , CURLOPT_POST, 1); curl_setopt( $ch , CURLOPT_POSTFIELDS, $post_data_string ); curl_setopt( $ch , CURLOPT_RETURNTRANSFER, true); curl_setopt( $ch , CURLOPT_HTTPHEADER, array ( "Content-Type: application/json" )); curl_setopt( $ch , CURLOPT_SSL_VERIFYPEER, false); curl_setopt( $ch , CURLOPT_SSL_VERIFYHOST, false); $response = curl_exec( $ch ); return json_decode( $response , true); } |
Curl not working in localhost
Related Posts
Search
Subscribe for Updates
Categories
Facebook Post