如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php header( 'content-type:text/html;charset=utf-8' ); mysql_connect( 'localhost' , 'root' , '' ); mysql_select_db( 'test' ); mysql_query( 'SET names utf8' ); foreach ( $xml_array as $tmp ){ $sql = "insert into `countries` (`id` ,`value`) VALUES (NULL , '" . $tmp ->field. "')" ; mysql_query( $sql ); echo $tmp ->field. "<br>" ; } ?> |
以上这篇php操作xml并将其插入数据库的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。