Home > Backend Development > PHP Tutorial > PHP uses dom to parse xml documents containing Chinese characters_PHP tutorial

PHP uses dom to parse xml documents containing Chinese characters_PHP tutorial

WBOY
Release: 2016-07-13 10:55:37
Original
814 people have browsed it

Generally, when we directly use DOM to process xml documents, if there is Chinese in it, the Chinese will be converted into garbled characters. Next, we use the iconv() function to implement encoding conversion to prevent Chinese garbled characters.

 代码如下 复制代码
//读取xml文件
$xmlDoc = new DOMDocument();
$xmlDoc->load('http://127.0.0.1/holiday.xml');
//获得该xml文件中的所有年份
$years = $xmlDoc->getElementsByTagName("year");
//对每一个年份进行处理
foreach($years as $year){
//获得具体的年份值
$yearNames = $year->getElementsByTagName("yearName");
$yearName = $yearNames->item(0)->nodeValue;
echo $yearName.'年'.'
';
//获得该年份下所有的假日
$holidays = $year->getElementsByTagName("holiday");
//对每一个假日进行处理
foreach($holidays as $holiday){
//获得假日名称
$holidayNames = $holiday->getElementsByTagName("holidayName");
$holidayName = $holidayNames->item(0)->nodeValue;
echo iconv('utf-8','gb2312', $holidayName).': '.'
';
//获得假日的具体放假日期
$daysOffs = $holiday->getElementsByTagName("daysOff");
$daysOff = $daysOffs->item(0);
$froms = $daysOff->getElementsByTagName("from");
$from = $froms->item(0)->nodeValue;
$tos = $daysOff->getElementsByTagName("to");
$to = $tos->item(0)->nodeValue;
echo '假期为:'.$from.' 至 '.$to.'
';
//获得针对该假日的调休日期
$overTimes = $holiday->getElementsByTagName("overTime");
$overTime = $overTimes->item(0);
$days = $overTime->getElementsByTagName("day");
//通过判断,有调休日期则显示,没有则不显示
if($days->length!=0){
echo '调休日为:';
foreach($days as $day){
echo $day->nodeValue.' ';
}
echo '
';
}
echo '
';
}
}
?>

xml file

 代码如下 复制代码



2012

元旦

2012-1-1
2012-1-3


2011-12-31



春节

2012-1-22
2012-1-28


2012-1-21
2012-1-29



清明节

2012-4-2
2012-4-4


2012-3-31
2012-4-1



劳动节

2012-4-29
2012-5-1


2012-4-28



端午节

2012-6-22
2012-6-24




中秋节、国庆节

2012-9-30
2012-10-7


2012-9-26




Design knowledge points:
1. XML node loop reading
2. Use the iconv() function to implement encoding conversion to prevent Chinese garbled characters

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632240.htmlTechArticleGenerally when we use dom directly to process xml documents, if there is Chinese in it, the Chinese will be converted into garbled characters, as follows We implement encoding conversion by using the iconv() function to prevent Chinese garbled characters...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template