欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php通过正则表达式记取数据来读取xml的方法

程序员文章站 2024-04-02 21:37:04
...

php通过正则表达式记取数据来读取xml的方法

这篇文章主要介绍了php通过正则表达式记取数据来读取xml的方法,实例分析了php正则表达式的技巧及读取XML文件的方法,需要的朋友可以参考下

本文实例讲述了php通过正则表达式记取数据来读取xml的方法。分享给大家供大家参考。具体分析如下:

xml源文件如下:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

张映

28

tank

28

php文件如下:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

$xml = "";

$f = fopen('person.xml', 'r');

while($data = fread($f,4096)){

$xml .= $data;

}

fclose( $f );

// 上面读取数据

preg_match_all("/\(.*?)\/s",$xml,$humans);

//匹配最外层标签里面的内容

foreach( $humans[1] as $k=>$human )

{

preg_match_all("/\(.*?)\/",$human,$name);

//匹配出名字

preg_match_all("/\(.*?)\/",$human,$sex);

//匹配出性别

preg_match_all("/\(.*?)\/",$human,$old);

//匹配出年龄

}

foreach($name[1] as $key=>$val){

echo $val." - ".$sex[$key][1]." - ".$old[$key][1]."
" ;

}

?>

希望本文所述对大家的php程序设计有所帮助。