>  기사  >  백엔드 개발  >  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으로 문의하세요.