如何使用PHP发送帖子请求

时间:2016-10-28 10:15:29

标签: php

有没有办法将PHP POST请求发送到远程URL并将结果作为html源。 我需要使用https://www.eps.go.kr/eo/VisaFndRM.eo?langType=slPHP获取我的考试成绩。

我试过这个

<?php $url = 'https://www.eps.go.kr/eo/VisaFndR.eo';
    $xml = array('srchFlag' => 'Y', 'langType' => 'sl', 'natNm' => 'sl', 'sKorTestNo' => '0072016P50000001', 'sLginId' => '', 'sLginPw' => '');
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);
    echo $response;
    curl_close($ch);
 ?>

但它返回空白页面。任何想法如何做到

0 个答案:

没有答案