首页 > 开发 > PHP > 正文

PHP 操作 XML 文件:读取、显示

2024-05-04 23:04:28
字体:
来源:转载
供稿:网友

本例中的php文件读取、显示xml文件内容

以下为php文件的内容,把该php文件和slashdot.xml放在同一个文件夹即可

<?php
$open_tags
= array(
    
'story' => '<story>'
,
    
'title' => '<title>'
,
    
'url' => '<url>'
,
'author'=>
'<author>'
);
$close_tags
= array(
    
'story' => '</story>'
,
    
'title' => '</title>'
,
    
'url' => '</url>'
,
'author'=>
'</author>'
);
?>

<?php
//下面就是定义函数来提取数据:

// 处理开始标记的属性指
// $attrs是一个多维数组,键值为属性名, 值就是该属性的值
function startelement($parser, $name, $attrs=''
){
    global
$open_tags, $temp, $current_tag
;
    
$current_tag = $name
;
    if (
$format = $open_tags[$name
]){
    switch(
$name
){
        case
'story'
:
        echo
'新的故事: '
;
        break;
        default:
        break;
    }
    }
}

// $current_tag告诉我们正在处理的标记,我们随后会在characterdata函数中使用
//
// 当遇到</story>标记时我们知道要flush所有的临时变量准备操作下一个标记
<lt;/story>'
,
    
'title' => '</title>'
,
    
'url' => '</url>'
,
'author'=>
'</author>'
);
?>

<?php
//下面就是定义函数来提取数据:

// 处理开始标记的属性指
// $attrs是一个多维数组,键值为属性名, 值就是该属性的值
function startelement($parser, $name, $attrs=''
){
    global
$open_tags, $temp, $current_tag
;
    
$current_tag = $name
;
    if (
$format = $open_tags[$name
]){
    switch(
$name
){
        case
'story'
:
        echo
'新的故事: '
;
        break;
        default:
        break;
    }
    }
}

// $current_tag告诉我们正在处理的标记,我们随后会在characterdata函数中使用
//
// 当遇到</story>标记时我们知道要flush所有的临时变量准备操作下一个标记
function endelement($parser, $name, $attrs=''
){
    global
$close_tags, $temp, $current_tag
;
    if (
$format = $close_tags[$name
]){
    switch(
$name
){
        case
'story'
:
        
return_page($temp
);
        
$temp = ''
;
        break;
        default:
        break;
    }
    }
}

// 传送给此函数的是元素间的数据
// 例如,对<title>title here</title>,$data就等于'title here'
function characterdata($parser, $data
){
    global
$current_tag, $temp, $catid
;
    switch(
$current_tag
){
    case
'title'
:
        
$temp['title'] = $data
;
        
$current_tag = ''
;
        break;
    case
'url'
:
        
$temp['url'] = $data
;
        
$current_tag = ''
;
        break;
case
'author'
:
     
$temp['author'] = $data
;
        
$current_tag = ''
;   
    default:
        break;
    }
}
?>  


<?php

function return_page
(){
    global
$temp
;
    echo
'o <a href="'.$temp['url'].'">'.$temp['title'].'</a><br>'
;
echo
'author:'.$temp['author'].'<br>'
;
echo
'-----------------------------'
;
echo
'<br>'
;
}

// 分析的内容
$xml_file = 'slashdot.xml'
;

// 定义字符集,默认是utf-8
$type = 'utf-8'
;

// 建立解析器
$xml_parser = xml_parser_create($type
);

// 设置解析选项
xml_parser_set_option($xml_parser, xml_option_case_folding, true
);
xml_parser_set_option($xml_parser, xml_option_target_encoding, 'utf-8'
);

// 告诉php发现元素时要调用什么函数
// 这些函数同时也处理元素的属性
xml_set_element_handler($xml_parser, 'startelement','endelement'
);

//告诉php对字符数据调用什么函数
xml_set_character_data_handler($xml_parser, 'characterdata'
);

if (!(
$fp = fopen($xml_file, 'r'
))) {
    die(
"无法打开 $xml_file 文件进行解析!n"
);
}

// 通过循环来解析整个文件
while ($data = fread($fp, 4096
)) {
    if (!(
$data = utf8_encode($data
))) {
        echo
'error'."n"
;
    }
    if (!
xml_parse($xml_parser, $data, feof($fp
))) {
        die(
sprintf( "xml error: %s at line %dnn"
,
        
xml_error_string(xml_get_error_code($xml_parser
)),
        
xml_get_current_line_number($xml_parser
)));
    }
}

xml_parser_free($xml_parser
);

?>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表