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
우정이란 인생이란 길을 친구의 손을 잡고 나란히 걸어가는것. 그러다가 친구가 시련이란 돌에 걸려 넘어졌을 때 용기란 손을 뻗어 주는 것.