curl_init() has been disabled for security reasons

后端 未结 4 436
既然无缘
既然无缘 2021-01-14 10:28
$url= \"http://api.stackoverflow.com/1.1/search?tagged=php\";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRAN         


        
4条回答
  •  清酒与你
    2021-01-14 11:04

    Open your php.ini file and check for disable_functions over there. And see whether your curl_init is packed there or not! Here is More information

提交回复
热议问题