phpxml数据库代码 php数据库源码

PHP生成和获取XML格式数据

在做数据接口时 我们通常要获取第三方数据接口或者给第三方提供数据接口 而这些数据格式通常是以XML或者JSON格式传输 本文将介绍如何使用PHP生成XML格式数据供第三方调用以及如何获取第三方提供的XML数据

成都创新互联公司从2013年开始,是专业互联网技术服务公司,拥有项目做网站、网站建设网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元杨浦做网站,已为上家服务,为杨浦各地企业和个人服务,联系电话:18982081108

生成XML格式数据

我们假设系统中有一张学生信息表student 需要提供给第三方调用 并有id name sex age分别记录学生的姓名 性别 年龄等信息

CREATE TABLE `student` (

`id` int( ) NOT NULL auto_increment

`name` varchar( ) NOT NULL

`sex` varchar( ) NOT NULL

`age` *** allint( ) NOT NULL default

PRIMARY KEY  (`id`)

) ENGINE=MyISAM  DEFAULT CHARSET=utf ;

首先 建立createXML php文件 先连接数据库 获取数据

include_once ( connect php ) //连接数据库

$sql = select * from student ;

$result = mysql_query($sql) or die( Invalid query: mysql_error())

while ($row = mysql_fetch_array($result)) {

$arr[] = array(

name = $row[ name ]

sex = $row[ sex ]

age = $row[ age ]

}

这个时候 数据就保存在$arr中 你可以使用print_r打印下数据测试

接着 建立xml 循环数组 将数据写入到xml对应的节点中

$doc = new DOMDocument( utf )   // 声明版本和编码

$doc formatOutput = true;

$r = $doc createElement( root )

$doc appendChild($r)

foreach ($arr as $dat) {

$b = $doc createElement( data )

$name = $doc createElement( name )

$name appendChild($doc createTextNode($dat[ name ]))

$b appendChild($name)

$sex = $doc createElement( sex )

$sex appendChild($doc createTextNode($dat[ sex ]))

$b appendChild($sex)

$age = $doc createElement( age )

$age appendChild($doc createTextNode($dat[ age ]))

$b appendChild($age)

$r appendChild($b)

}

echo $doc saveXML()

我们调用了PHP内置的类DOMDocument来处理与生成xml 最终生成的xml格式请点击这里看效果

?xml version= encoding= utf ?

root

data

name李王皓/name

sex男/sex

age /age

/data

/root

获取XML格式数据

现在我们假设要从第三方获取学生信息 数据格式是XML 我们需要使用PHP解析XML 然后将解析后的数据显示或者写入本地数据库 而这里关键的一步是解析XML

PHP有很多中方法可以解析XML 其中PHP提供了内置的XMLReader类可以循序地浏览过xml档案的节点 你可以想像成游标走过整份文件的节点 并抓取需要的内容 使用XMLReader是高效的 尤其是读取非常大的xml数据 相对其他方法 使用XMLReader消耗内存非常少

header( Content type:text/; Charset=utf )

$url = // helloweba /demo/importXML/createXML php ;

$reader = new XMLReader()   //实例化XMLReader

$reader open($url) //获取xml

$i= ;

while ($reader read()) {

if ($reader nodeType == XMLReader::TEXT) { //判断node类型

$m = $i% ;

if($m== )

$name = $reader value;  //读取node值

if($m== )

$sex = $reader value;

if($m== ){

$age = $reader value;

$arr[] = array(

name = $name

sex = $sex

age = $age

}

$i++;

}

}

//print_r($arr)

lishixinzhi/Article/program/PHP/201311/21636

php读取数据库并生成xml文件

?php

//读取数据库我就不说了,从数据库取出来就行了

#使用dom生成xml,注意生成的xml中会没有空格。

$dom=new DOMDocument('1.0','utf-8');

$time = time();

$path="$time.xml"; // $path 为xml文件的存储路径。

$module=$dom-createElement('breakfast_menu');//创建一个节点

$dom-appendChild($module); //在指定元素节点的最后一个子节点之后添加节点

$food=$dom-createElement('food'); //外body

$module-appendChild($food);

$name=$dom-createElement('name'); //内table

$name_value=$dom-createTextNode('测试数据1');

$name-appendChild($name_value);

$food-appendChild($name);

$price=$dom-createElement('price'); //内table

$price_value=$dom-createTextNode('测试数据2');

$price-appendChild($price_value);

$food-appendChild($price);

$description=$dom-createElement('description'); //内table

$description_value=$dom-createTextNode('测试数据3');

$description-appendChild($description_value);

$food-appendChild($description);

$calories=$dom-createElement('calories'); //内table

$calories_value=$dom-createTextNode('测试数据4');

$calories-appendChild($calories_value);

$food-appendChild($calories);

$dom-saveXML();

$dom-save($path);

//var_dump($dom-save($path));exit;

if($dom-saveXML()){

echo "生成成功:".$dom-saveXML();

}else{

echo "生成失败";

}

?

php生成xml代码

$docu=new DOMDocument('1.0','utf-8');//声明DOMDocument对象

$docu-formatOutput=true;//使用xml标准化格式输出

$request=$docu-createElement('request');//使用createElement创建一个request标签

$action=$docu-createElement('action');//在request标签下创建action标签

$value=$docu-createTextNode('regAndenter');//在action里插入字符串

$action-appendChild($value);//

$request-appendChild($action);//将创建的action标签添加到xml文件里

$xmlid=$docu-createElement('id');

$value=$docu-createTextNode($dataid);

$xmlid-appendChild($value);

$request-appendChild($xmlid);

$phonenumber =$docu-createElement('phonenumber');

$value=$docu-createTextNode($uname);

$phonenumber-appendChild($value);

$request-appendChild($phonenumber);

$password =$docu-createElement('password');

$value=$docu-createTextNode($pass);

$password-appendChild($value);

$request-appendChild($password);

$email=$docu-createElement('email');

$value=$docu-createTextNode($emai);

$email-appendChild($value);

$request-appendChild($email);

$realname =$docu-createElement('realname');

$value=$docu-createTextNode($name1);

$realname-appendChild($value);

$request-appendChild($realname);

$document_id =$docu-createElement('document_id');

$value=$docu-createTextNode($idc);

$document_id-appendChild($value);

$request-appendChild($document_id);

$provincecode=$docu-createElement('provincecode');

$value=$docu-createTextNode($privince);

$provincecode-appendChild($value);

$request-appendChild($provincecode);

$citycode =$docu-createElement('citycode');

$value=$docu-createTextNode($city);

$citycode-appendChild($value);

$request-appendChild($citycode);

$grouptype =$docu-createElement('grouptype');

$value=$docu-createTextNode($type);

$grouptype-appendChild($value);

$request-appendChild($grouptype);

$college =$docu-createElement('college');

$value=$docu-createTextNode($colle);

$college-appendChild($value);

$request-appendChild($college);

$docu-appendChild($request);//将创建的request标签添加到xml文件里

//$docu-save('wang.xml');//生成xml文件

照着我这个改,希望你能看得懂

php生成xml代码快说把

使用PHP DOMDocument创建动态XML文件

当处理基于XML应用程序时,开发者经常需要建立XML编码数据结构。例如,Web中基于用户输入的XML状态模板,服务器请求XML语句,以及基于运行时间参数的客户响应。

尽管XML数据结构的构建比较费时,但如果使用成熟的PHP DOM应用程序接口,一切都会变得简单明了。本文将向你介绍PHP DOM应用程序接口的主要功能,演示如何生成一个正确的XML完整文件并将其保存到磁盘中。

创建文档类型声明

一般而言,XML声明放在文档顶部。在PHP中声明十分简单:只需实例化一个DOM文档类的对象并赋予它一个版本号。查看程序清单A:

程序清单 A

复制代码 代码如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// save and display tree

echo $dom-saveXML();

?

请注意DOM文档对象的saveXML()方法。稍后我再详细介绍这一方法,现在你只需要简单认识到它用于输出XML文档的当前快照到一个文件或浏览器。在本例,为增强可读性,我已经将ASCII码文本直接输出至浏览器。在实际应用中,可将以text/XML头文件发送到浏览器。

如在浏览器中查看输出,你可看到如下代码:

?xml version="1.0"?

添加元素和文本节点

XML真正强大的功能是来自其元素与封装的内容。幸运的是,一旦你初始化DOM文档,很多操作变得很简单。此过程包含如下两步骤:

对想添加的每一元素或文本节点,通过元素名或文本内容调用DOM文档对象的createElement()或createTextNode()方法。这将创建对应于元素或文本节点的新对象。

通过调用节点的appendChild()方法,并把其传递给上一步中创建的对象,并在XML文档树中将元素或文本节点添加到父节点。

以下范例将清楚地演示这2步骤,请查看程序清单B。

程序清单 B

复制代码 代码如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// save and display tree

echo $dom-saveXML();

?

这 里,我首先创建一个名字为toppings的根元素,并使它归于XML头文件中。然后,我建立名为item的元素并使它 归于根元素。最后,我又创建一个值为“pepperoni”的文本节点并使它归于item元素。最终结果如下:

复制代码 代码如下:

?xml version="1.0"?

toppings

itempepperoni/item

/toppings

如果你想添加另外一个topping,只需创建另外一个item并添加不同的内容,如程序清单C所示。

程序清单C

复制代码 代码如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create another text node

$text = $dom-createTextNode("tomato");

$item-appendChild($text);

// save and display tree

echo $dom-saveXML();

?

以下是执行程序清单C后的输出:

复制代码 代码如下:

?xml version="1.0"?

toppings

itempepperoni/item

itemtomato/item

/toppings

添加属性

通过使用属性,你也可以添加适合的信息到元素。对于PHP DOM API,添加属性需要两步:首先用DOM文档对象的createAttribute()方法创建拥有此属性名字的节点,然后将文档节点添加到拥有属性值的属性节点。详见程序清单D。

程序清单 D

复制代码 代码如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create attribute node

$price = $dom-createAttribute("price");

$item-appendChild($price);

// create attribute value node

$priceValue = $dom-createTextNode("4");

$price-appendChild($priceValue);

// save and display tree

echo $dom-saveXML();

?

输出如下所示:

复制代码 代码如下:

?xml version="1.0"?

toppings

item price="4"pepperoni/item

/toppings

添加CDATA模块和过程向导

虽然不经常使用CDATA模块和过程向导,但是通过调用DOM文档对象的createCDATASection()和createProcessingInstruction()方法, PHP API 也能很好地支持CDATA和过程向导,请见程序清单E。

程序清单 E

复制代码 代码如下:

?php

// create doctype

// create doctype

$dom = new DOMDocument("1.0");

// display document in browser as plain text

// for readability purposes

header("Content-Type: text/plain");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create attribute node

$price = $dom-createAttribute("price");

$item-appendChild($price);

// create attribute value node

$priceValue = $dom-createTextNode("4");

$price-appendChild($priceValue);

// create CDATA section

$cdata = $dom-createCDATASection(" Customer requests that pizza be sliced into 16 square pieces ");

$root-appendChild($cdata);

// create PI

$pi = $dom-createProcessingInstruction("pizza", "bake()");

$root-appendChild($pi);

// save and display tree

echo $dom-saveXML();

?

输出如下所示:

复制代码 代码如下:

?xml version="1.0"?

toppings

item price="4"pepperoni/item

![CDATA[

Customer requests that pizza be sliced into 16 square pieces

]]

?pizza bake()?

/toppings

保存结果

一旦已经实现你的目标,就可以将结果保存在一个文件或存储于PHP的变量。通过调用带有文件名的save()方法可以将结果保存在文件中,而通过调用saveXML()方法可存储于PHP的变量。请参考以下实例(程序清单F):

程序清单 F

复制代码 代码如下:

?php

// create doctype

$dom = new DOMDocument("1.0");

// create root element

$root = $dom-createElement("toppings");

$dom-appendChild($root);

$dom-formatOutput=true;

// create child element

$item = $dom-createElement("item");

$root-appendChild($item);

// create text node

$text = $dom-createTextNode("pepperoni");

$item-appendChild($text);

// create attribute node

$price = $dom-createAttribute("price");

$item-appendChild($price);

// create attribute value node

$priceValue = $dom-createTextNode("4");

$price-appendChild($priceValue);

// create CDATA section

$cdata = $dom-createCDATASection(" Customer requests that pizza be

sliced into 16 square pieces ");

$root-appendChild($cdata);

// create PI

$pi = $dom-createProcessingInstruction("pizza", "bake()");

$root-appendChild($pi);

// save tree to file

$dom-save("order.xml");

// save tree to string

$order = $dom-save("order.xml");

?

下面是实际的例子,大家可以测试下。

xml.php(生成xml)

复制代码 代码如下:

?

$conn = mysql_connect('localhost', 'root', '123456') or die('Could not connect: ' . mysql_error());

mysql_select_db('vdigital', $conn) or die ('Can\'t use database : ' . mysql_error());

$str = "SELECT id,username FROM `admin` GROUP BY `id` ORDER BY `id` ASC";

$result = mysql_query($str) or die("Invalid query: " . mysql_error());

if($result)

{

$xmlDoc = new DOMDocument();

if(!file_exists("01.xml")){

$xmlstr = "?xml version='1.0' encoding='utf-8' ?message/message";

$xmlDoc-loadXML($xmlstr);

$xmlDoc-save("01.xml");

}

else { $xmlDoc-load("01.xml");}

$Root = $xmlDoc-documentElement;

while ($arr = mysql_fetch_array($result)){

$node1 = $xmlDoc-createElement("id");

$text = $xmlDoc-createTextNode(iconv("GB2312","UTF-8",$arr["id"]));

$node1-appendChild($text);

$node2 = $xmlDoc-createElement("name");

$text2 = $xmlDoc-createTextNode(iconv("GB2312","UTF-8",$arr["username"]));

$node2-appendChild($text2);

$Root-appendChild($node1);

$Root-appendChild($node2);

$xmlDoc-save("01.xml");

}

}

mysql_close($conn);

?

test.php(应用测试)

复制代码 代码如下:

?

$xmlDoc = new DOMDocument();

$xmlDoc-load("");

$x=$xmlDoc-getElementsByTagName('name');

for ($i=0; $i=$x-length-1; $i++)

{

if(strpos($x-item($i)-nodeValue,"fang")!==false)

{

echo $x-item($i)-parentNode-childNodes-item(1)-nodeValue;

}

}

?

网页名称:phpxml数据库代码 php数据库源码
网页链接:https://www.cdcxhl.com/article4/ddcccie.html

成都网站建设公司_创新互联,为您提供动态网站定制开发网站营销商城网站Google搜索引擎优化

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站建设网站维护公司