記事一覧はこちら

2012-09-01から1ヶ月間の記事一覧

phpのCURLOPT_POSTFIELDSで@から始まるテキストを送信する方法

phpのcurlでファイルとメッセージをpostしたい場合 $post["file"]="ほげほげ"; $post["file"]="@./upload.png"; $curl = curl_init("http://example.com/"); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS,$post); $resul…