Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- memcached
- 맵핑
- Apache
- wordpress rss
- wordpress feed
- 프록시
- htaccess
- 아파치 프록시
- mapping
- 설정 파일
- elasticsrach template
- Elasticsearch
- 인스타그램
- 크롤링
- Kibana
- 워드프레스 피드
- 엘라스틱서치
- config
- 워드프레스
- memcache
- htpasswd
- template
- 워드프레스 rss
- 아파치
- graph api
- wordpress function
- Wordpress
Archives
- Today
- Total
EunsooD
php에서 xml 데이터 파싱하기 본문
반응형
php에서 xml데이터를 읽어 오는 방법은
<?php
$xml_string = file_get_contents('test.xml');
$enc = mb_detect_encoding($xml_string, array('EUC-KR', 'UTF-8', 'shift_jis', 'CN-GB'));
if($enc != 'UTF-8'){
$xml_string = iconv($enc, 'UTF-8', $xml_string);
}
$xml = simplexml_load_string($xml_string);
$xml->item[1]->title = "test";
//$xml->asXML('test.xml'); permission denied
for($i=0; $i<10; $i++){
echo $xml->item[$i]->title;
}
?>
위에서 내용을 수정해서 xml을 덮어 쓰려고 했는데,, 권한이 없어서 계속 실패한다.
흐음..
반응형
Comments