首頁  >  文章  >  後端開發  >  php通过正则表达式记取数据来读取xml的方法_PHP教程

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

WBOY
WBOY原創
2016-07-13 10:04:30827瀏覽

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程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/965527.htmlTechArticlephp通过正则表达式记取数据来读取xml的方法 这篇文章主要介绍了php通过正则表达式记取数据来读取xml的方法,实例分析了php正则表达式的技...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn