对你说sunshasha.blog.chinaunix.net
sss0213
全部博文(473)
OCI(7)
操作(11)
smarty(1)
USB设备(1)
RAID(1)
分区(4)
硬盘(8)
翻译(0)
memcache(0)
high performance(1)
使用心得(83)
看过的手册(2)
centos(2)
程序(1)
源码分析(2)
工具(4)
内核(2)
文本编辑(6)
配置(19)
信号(2)
命令(37)
2012年(8)
2011年(63)
2010年(73)
2009年(231)
2008年(98)
clifford
heavenzo
ccx_wz
SKYLOGO
satfire
alang85
dyli2000
fjianjia
ning_lia
lianglic
hahajkjk
cold_moo
L_H75110
fangdiku
格伯纳
浪花小雨
cynthia
Bsolar
分类:
2010-01-25 14:36:09
<?php // Set error reporting to ignore notices error_reporting(E_ALL ^ E_NOTICE); // Include XML_Serializer require_once 'XML/Serializer.php'; // Some data to transform $palette = array('red', 'green', 'blue'); // An array of serializer options $serializer_options = array ( 'addDecl' => TRUE, 'encoding' => 'ISO-8859-1', 'indent' => ' ', 'rootName' => 'palette', 'defaultTagName' => 'color', ); // Instantiate the serializer with the options $Serializer = &new XML_Serializer($serializer_options); // Serialize the data structure $status = $Serializer->serialize($palette); // Check whether serialization worked if (PEAR::isError($status)) { die($status->getMessage()); } // Display the XML document header('Content-type: text/xml'); echo $Serializer->getSerializedData(); ?>
<?xml version="1.0" encoding="ISO-8859-1"?><palette> <color>red</color> <color>green</color> <color>blue</color></palette>
在redhat下安装步骤:
上一篇:PEAR简介:用PEAR来写你的下一个php程序
下一篇:js可以遮盖select的遮罩层
登录 注册