「Php/curl/basic認証」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「 $post['hoge'] = 'piyo'; $chost = curl_init(); curl_setopt($chost, CURLOPT_URL, 'http://puyo.nonip.net/'); curl_setopt($chost, CURLOPT_POST, true); curl_setopt($chost...」) |
|||
行1: | 行1: | ||
$post['hoge'] = 'piyo'; | $post['hoge'] = 'piyo'; | ||
$chost = curl_init(); | $chost = curl_init(); | ||
− | curl_setopt($chost, CURLOPT_URL, ' | + | curl_setopt($chost, CURLOPT_URL, 'ttp://example.com/'); |
curl_setopt($chost, CURLOPT_POST, true); | curl_setopt($chost, CURLOPT_POST, true); | ||
curl_setopt($chost, CURLOPT_POSTFIELDS, $post); | curl_setopt($chost, CURLOPT_POSTFIELDS, $post); |
2017年11月29日 (水) 19:06時点における最新版
$post['hoge'] = 'piyo'; $chost = curl_init(); curl_setopt($chost, CURLOPT_URL, 'ttp://example.com/'); curl_setopt($chost, CURLOPT_POST, true); curl_setopt($chost, CURLOPT_POSTFIELDS, $post); curl_setopt($chost, CURLOPT_RETURNTRANSFER, true); curl_setopt($chost, CURLOPT_USERPWD, $USERNAME . ':' . $PASSWORD); $result = curl_exec($chost); curl_close($chost); echo $result;