728x90
[원문] http://stackoverflow.com/questions/8596311/how-to-make-a-post-request-without-curl
$postdata = http_build_query(
array(
'var1' => 'some content',
'var2' => 'doh'
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://example.com/submit.php', false, $context);
728x90
'php' 카테고리의 다른 글
mysql dbdriver call store procedure in codeigniter(ci) (0) | 2018.12.17 |
---|---|
json 동적 사용하기 (0) | 2016.05.31 |
php 에서 _POST 대신 바로 변수명으로 데이터 전송 EGPCS (Environment, Get, Post, Cookie, and Server) (0) | 2013.10.22 |
13 permission denied access (0) | 2013.09.23 |
PHP 및 httpd.conf 내용중 기본적인 체크 (0) | 2013.08.16 |
댓글