秋风的萧瑟 又见湖边木叶飞

欢迎来到梁良 | LonBlog,这里记录下了我生活点点滴滴。

利用php生成xml文件

具体代码如下:
<?php
$head ='<?xml version="1.0" encoding="gb2312" ?>
        <channel>';

$stp  ='
         <item>
          <title>标题</title>
          <link>网址</link>
          <data>时间</data>
  </item>
       ';

for($i=1;$i<=4;$i++){
 $stp .=$stp;
}

$foot ='</channel>';
$cont =fopen("test.xml",'w');
fwrite($cont,$head.$stp.$foot);
fclose($cont);
?>

posted on 2010-06-10 23:23 梁良 阅读(228) 评论(0)  编辑  收藏 所属分类: PHP


只有注册用户登录后才能发表评论。


网站导航:
 
<2010年6月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

导航

公告

    欢迎光临

常用链接

随笔分类

随笔档案

相册

.我的网站.

友情博客

开源社区

科技博客

资料网站

最新随笔

搜索

最新评论

阅读排行榜

Powered by:
LonLeung
Copyright © 梁良

本页生成时间:毫秒