HTTP POSTでphp curlを実行する方法を誰かに教えてもらえますか?
私はこのようなデータを送りたいです。
username=user1, password=passuser1, gender=1
www.domain.com
へ
Curlがresult=OK
のような応答を返すことを期待しています。例はありますか?
<?php
//
// A very simple PHP example that sends a HTTP POST to a remote site
//
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://www.example.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"postvar1=value1&postvar2=value2&postvar3=value3");
// In real life you should use something like:
// curl_setopt($ch, CURLOPT_POSTFIELDS,
// http_build_query(array('postvar1' => 'value1')));
// Receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec($ch);
curl_close ($ch);
// Further processing ...
if ($server_output == "OK") { ... } else { ... }
?>
// set post fields
$post = [
'username' => 'user1',
'password' => 'passuser1',
'gender' => 1,
];
$ch = curl_init('http://www.example.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
// execute!
$response = curl_exec($ch);
// close the connection, release resources used
curl_close($ch);
// do anything you want with your response
var_dump($response);
<?php
// mutatis mutandis
namespace MyApp\Http;
class CurlPost
{
private $url;
private $options;
/**
* @param string $url Request URL
* @param array $options cURL options
*/
public function __construct($url, array $options = [])
{
$this->url = $url;
$this->options = $options;
}
/**
* Get the response
* @return string
* @throws \RuntimeException On cURL error
*/
public function __invoke(array $post)
{
$ch = curl_init($this->url);
foreach ($this->options as $key => $val) {
curl_setopt($ch, $key, $val);
}
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
$error = curl_error($ch);
$errno = curl_errno($ch);
if (is_resource($ch)) {
curl_close($ch);
}
if (0 !== $errno) {
throw new \RuntimeException($error, $errno);
}
return $response;
}
}
// create curl object
$curl = new \MyApp\Http\CurlPost('http://www.example.com');
try {
// execute the request
echo $curl([
'username' => 'user1',
'password' => 'passuser1',
'gender' => 1,
]);
} catch (\RuntimeException $ex) {
// catch errors
die(sprintf('Http error %s with code %d', $ex->getMessage(), $ex->getCode()));
}
ここで注意してください:例えばgetResponse()
メソッドでAdapterInterface
と呼ばれるある種のインターフェースを作成し、それを上のクラスに実装させるのが最善です。そうすれば、アプリケーションに悪影響を及ぼすことなく、いつでもこの実装を自分の好きなアダプタと交換できます。
通常、Windowsオペレーティングシステム下のPHPにあるcURLに問題があります。 httpsで保護されたエンドポイントに接続しようとすると、certificate verify failed
というエラーが表示されます。
ここでたいていの人がすることは、証明書エラーを無視して続行するようにcURLライブラリに指示することです(curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
)。これによりコードが機能するため、巨大なセキュリティホールが発生し、悪意のあるユーザーがアプリケーションに Man In The Middle などのさまざまな攻撃を実行できるようになります。
絶対にしないでください。代わりに、あなたは単にあなたのphp.ini
を修正して、あなたのCA Certificate
ファイルがそれが証明書を正しく検証することを可能にすることであるところにPHPを言う必要があります
; modify the absolute path to the cacert.pem file
curl.cainfo=c:\php\cacert.pem
最新のcacert.pem
は、インターネットからダウンロードすることも、 お気に入りのブラウザから抽出することもできます 。 php.ini
関連の設定を変更するときは、必ずウェブサーバーを再起動してください。
これをfoobar.phpというファイルに入れます。
<?php
$ch = curl_init();
$skipper = "luxury assault recreational vehicle";
$fields = array( 'penguins'=>$skipper, 'bestpony'=>'rainbowdash');
$postvars = '';
foreach($fields as $key=>$value) {
$postvars .= $key . "=" . $value . "&";
}
$url = "http://www.google.com";
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST, 1); //0 for a get request
curl_setopt($ch,CURLOPT_POSTFIELDS,$postvars);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT ,3);
curl_setopt($ch,CURLOPT_TIMEOUT, 20);
$response = curl_exec($ch);
print "curl response is:" . $response;
curl_close ($ch);
?>
それからphp foobar.php
コマンドでそれを実行してください、それはscreenにこの種の出力をダンプします:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Title</title>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<body>
A mountain of content...
</body>
</html>
そこで、www.google.comにPHP POSTを入力してデータを送信しました。
サーバーがpost変数を読み込むようにプログラムされている場合は、それに基づいて別のことをすることを決定できます。
それはで簡単に到達することができます。
<?php
$post = [
'username' => 'user1',
'password' => 'passuser1',
'gender' => 1,
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.domain.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
$response = curl_exec($ch);
var_export($response);
カールポスト+エラー処理+ヘッダーの設定[@ mantas-dに感謝]:
function curlPost($url, $data=NULL, $headers = NULL) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if(!empty($data)){
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
}
if (!empty($headers)) {
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
}
$response = curl_exec($ch);
if (curl_error($ch)) {
trigger_error('Curl Error:' . curl_error($ch));
}
curl_close($ch);
return $response;
}
curlPost('google.com', [
'username' => 'admin',
'password' => '12345',
]);
curlPost('google.com', [
'username' => 'admin',
'password' => '12345',
]);
function curlPost($url, $data) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if ($error !== '') {
throw new \Exception($error);
}
return $response;
}
フォームがリダイレクト、認証、クッキー、SSL(https)、またはPOST変数を想定した完全に開いたスクリプト以外のものを使用している場合は、本当にすばやく歯を磨くことができます。 Snoopy を見てください。これは、頭の中で多くのオーバーヘッドを設定する必要性を排除しながら、頭の中で持っていることとまったく同じです。
これがPHP + curl http://www.webbotsspidersscreenscrapers.com/DSP_download.php の定型コードです。
これらのライブラリに含めると開発が簡単になります
<?php
# Initialization
include("LIB_http.php");
include("LIB_parse.php");
$product_array=array();
$product_count=0;
# Download the target (store) web page
$target = "http://www.tellmewhenitchanges.com/buyair";
$web_page = http_get($target, "");
...
?>
あなたがあなた自身のウェブサイトに情報を渡しているならもっと簡単な答えはSESSION変数を使うことです。 phpページを始めてください:
session_start();
PHP変数を使用する代わりに、POSTに生成してセッションの次のページに渡したい情報がある時点であれば、それをSESSION変数に割り当てます。例:
$_SESSION['message']='www.'.$_GET['school'].'.edu was not found. Please try again.'
次のページでは、このSESSION変数を単純に参照します。注:使用した後は必ず破棄してください。使用した後は消えません。
if (isset($_SESSION['message'])) {echo $_SESSION['message']; unset($_SESSION['message']);}
あなたがクッキーでサイトにログインしようとした場合。
このコード:
if ($server_output == "OK") { ... } else { ... }
あなたがログインしようとするとうまくいかないかもしれません、なぜなら多くのサイトはステータス200を返しますが、投稿は成功していないからです。
ログイン投稿が成功したかどうかを確認する簡単な方法は、再度クッキーを設定するかどうかを確認することです。出力にSet-Cookies文字列が含まれている場合、投稿は成功せず、新しいセッションが開始されます。
投稿も成功する可能性がありますが、ステータスは200にリダイレクトされる可能性があります。
投稿が成功したことを確認するには、これを試してください。
投稿後の場所をたどると、投稿がリダイレクトされるページに移動します。
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
そして、リクエストに新しいクッキーが存在するかどうかをチェックするよりも:
if (!preg_match('/^Set-Cookie:\s*([^;]*)/mi', $server_output))
{echo 'post successful'; }
else { echo 'not successful'; }
$curlHandler = curl_init();
curl_setopt_array($curlHandler, [
CURLOPT_URL => 'https://postman-echo.com/post',
CURLOPT_RETURNTRANSFER => true,
/**
* Specify POST method
*/
CURLOPT_POST => true,
/**
* Specify array of form fields
*/
CURLOPT_POSTFIELDS => [
'foo' => 'bar',
'baz' => 'biz',
],
]);
$response = curl_exec($curlHandler);
curl_close($curlHandler);
echo($response);