php データを取得するためのcurlメソッド: 1. 「function http_curl($url, $type = 'get', $data = ''){...}」メソッドを通じてデータを取得します。 2. を使用します。 POSTとGETでデータを取得できます。
この記事の動作環境: Windows7 システム、PHP7.1 バージョン、DELL G3 コンピューター
phpcurl のみの動作データを取得しますか?
php は CURL を使用してデータを取得します
最初の方法では、POST と GET をマージします。
function http_curl($url, $type = 'get', $data = ''){ $cl = curl_init(); //初始化 curl_setopt($cl, CURLOPT_URL, $url); //设置 cURL 传输选项 curl_setopt($cl, CURLOPT_RETURNTRANSFER, 1); // 将curl_exec()获取的信息以字符串返回,而不是直接输出。 curl_setopt($cl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($cl, CURLOPT_SSL_VERIFYHOST, false); if($type == 'post'){ curl_setopt($cl, CURLOPT_POST, 1); //发送 POST 请求,类型为:application/x-www-form-urlencoded curl_setopt($cl, CURLOPT_POSTFIELDS, $data); } $output = curl_exec($cl); //执行 cURL 会话 curl_close($cl); return $output; }
2 番目の方法では、POST と GET を分離します
POST
$url = "http://localhost/web_services.php"; $post_data = array ("username" => "bob","key" => "12345"); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // post数据 curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // post的变量 curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); $output = curl_exec($ch); curl_close($ch); //打印获得的数据 print_r($output);
GET
//初始化 $ch = curl_init(); //设置选项,包括URL curl_setopt($ch, CURLOPT_URL, "http://www.jb51.net"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //执行并获取HTML文档内容 $output = curl_exec($ch); //释放curl句柄 curl_close($ch); //打印获得的数据 print_r($output);
上記のメソッドで取得したデータは json 形式です
json_decode($output,true) を使用して配列に解析します。 json_decode($output) をオブジェクトに解析します。
パラメータの説明:
$url: リクエストされる URL アドレス。取得リクエストの場合は、パラメータを追加できます。 URL の最後に直接追加します。
$type: リクエスト メソッド
$data: ポスト モードでリクエストするときに渡されるパラメータ
curl_init() cURL セッションを初期化します
curl_setopt() cURL 送信オプションを設定します
curl_exec() cURL セッションを実行します
curl_close() cURL セッションを閉じます
推奨される学習: "PHP ビデオ チュートリアル"
以上がPHP CURLでデータのみを取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。