반응형
define(INFO, $path."info.xml");
$infoXML = new DOMDocument();
$infoXML->load(INFO);
$category = getXMLTextContent($infoXML, "group");
function getXMLTextContent($xml, $field){
$vars = $xml->getElementsByTagName($field);
foreach($vars as $var){
foreach($var->childNodes as $child) {
if ($child->nodeType == XML_CDATA_SECTION_NODE) {
return $child->textContent;
}
}
}
}
반응형
'웹프로그래밍 > PHP' 카테고리의 다른 글
[php] 파일 이동, 복사 함수 (0) | 2015.04.15 |
---|---|
PHP + jQuery AJAX Upload (0) | 2015.04.10 |
PHP DOMDocument getting Attribute of Tag (0) | 2015.04.10 |
임시로 PHP오류 출력할 때 (0) | 2015.04.10 |
gd-jpeg, libjpeg: recoverable error: Premature end of JPEG file (0) | 2014.12.07 |