PHP & Others

allow_url_fopen = Off 일때 simplexml_load_file 사용

페이지 정보

본문

curl 사용가능한 설정이어야 함

if(ini_get('allow_url_fopen')) {
  $xml = simpleXML_load_file($url);
}else{
  $ch = curl_init($url);
  curl_setopt($ch, CURLOPT_HEADER, false);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  $xml_raw = curl_exec($ch);
  $xml = simplexml_load_string($xml_raw);
}

관련자료

등록된 댓글이 없습니다.
Today's proverb
인생은 자유로이 여행할 수 있도록 시원하게 뚫린 대로가 아니다. 때로는 길을 잃고 헤매기도 하고 때로는 막다른 길에서 좌절하기도 하는 미로와 같다. (누가 내 치즈를 옮겼을까? 중에서)