- Curl是什么
PHP supports libcurl, a library created by Daniel Stenberg, that allows you to connect and communicate to many different types of servers with many different types of protocols.
Curl是一个库,它允许你通过各种协议和各种不同的服务器进行连接和通讯 - 我们以著名的“测试网络是否连接”的网站——百度为例,来尝试下curl
<?php // create curl resource // 创建了一个curl会话资源,成功返回一个句柄; $ch = curl_init(); // set url curl_setopt($ch, CURLOPT_URL, "baidu.com"); //return the transfer as a string //设置是否将响应结果存入变量,1是存入,0是直接echo出; curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // $output contains the output string // 执行,然后将响应结果存入$output变量,供下面echo; if($output = curl_exec($ch)){ //echo output 成功则打开百度页面 echo $output; }else{ echo "你尚未连接网络"; } // close curl resource to free up system resources // 关闭这个curl会话资源。 curl_close($ch);