有没有办法将PHP POST
请求发送到远程URL
并将结果作为html源。
我需要使用https://www.eps.go.kr/eo/VisaFndRM.eo?langType=sl
从PHP
获取我的考试成绩。
我试过这个
<?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);
?>
但它返回空白页面。任何想法如何做到