Php/curl/basic認証
提供: 初心者エンジニアの簡易メモ
2017年11月29日 (水) 19:01時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「 $post['hoge'] = 'piyo'; $chost = curl_init(); curl_setopt($chost, CURLOPT_URL, 'http://puyo.nonip.net/'); curl_setopt($chost, CURLOPT_POST, true); curl_setopt($chost...」)
$post['hoge'] = 'piyo'; $chost = curl_init(); curl_setopt($chost, CURLOPT_URL, 'http://puyo.nonip.net/'); 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;