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);
}

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
은혜를 입은 사람은 그 은혜를 마음속에 간직하고 있어야 하지만, 은혜를 베푼 사람은 그것을 기억하고 있어서는 안 된다. (키케로)