관세청, 우체국 RestFul 웹페이지 못읽어 올때 curl , file_get_contents
페이지 정보
본문
php curl 에서 특정페이지만 데이터 못불러 올때 처리(관세청)
setsebool -P httpd_can_network_connect 1
xml 배열 처리(우체국)
$context = stream_context_create(array('http' => array('header' => 'Accept: application/xml')));
$url = "http://www.kma.go.kr/wid/queryDFSRSS.jsp";
$xmlstring = file_get_contents($url, false, $context);
$xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($xml);
$array = json_decode($json,TRUE);
print_r($array);
setsebool -P httpd_can_network_connect 1
xml 배열 처리(우체국)
$context = stream_context_create(array('http' => array('header' => 'Accept: application/xml')));
$url = "http://www.kma.go.kr/wid/queryDFSRSS.jsp";
$xmlstring = file_get_contents($url, false, $context);
$xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($xml);
$array = json_decode($json,TRUE);
print_r($array);
관련링크
- 이전글우분투 nginx php7 mariadb10 설치 메뉴얼 20.02.21
- 다음글php로 웹상의 파일 읽기(원격 리소스 읽기) 20.02.21
댓글목록
등록된 댓글이 없습니다.