PHP操作xml代码
作者:bea
代码如下: /*获取图片新闻列表*/ function getPicNews($number=5){ require_once 'include/content_class.php'; $Content=new Content(); $sql='select contentid as id,title,pic,typeid from `cms_content` where pic<>"" order by input_time desc'; $row
代码如下:
/*获取图片新闻列表*/
function getPicNews($number=5){
require_once 'include/content_class.php';
$Content=new Content();
$sql='select contentid as id,title,pic,typeid from `cms_content` where pic<>"" order by input_time desc';
$rows=$Content->getRowsBySQL($sql,$number);
$dom=new DOMDocument('1.0','GBK');
$root=$dom->createElement('slider');
$dom->appendChild($root);
foreach($rows as $val){
$item=$dom->createElement('item');
$root->appendChild($item);
$title=$dom->createAttribute('title');
$title_text=$dom->createTextNode($val['title']);
$title->appendChild($title_text);
$item->appendChild($title);
$href=$dom->createAttribute('href');
$href_text=$dom->createTextNode('show.php?newsid='.$val['id'].'&classid='.$val['typeid']);
$href->appendChild($href_text);
$item->appendChild($href);
$imageurl=$dom->createAttribute('imageurl');
$imageurl_text=$dom->createTextNode($val['pic']);
$imageurl->appendChild($imageurl_text);
$item->appendChild($imageurl);
}
return $dom->saveXML();
}
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 用PHP为SHOPEX增加日志功能代码
- php操作excel文件 基于phpexcel
- PHP 多维数组排序(usort,uasort)
- PHP 数组遍历方法大全(foreach,list,each)
- PHP extract 将数组拆分成多个变量的函数
- PHP 反向排序和随机排序代码
- PHP 数组排序方法总结 推荐收藏
- 超级好用的一个php上传图片类(随机名,缩略图,加水印)
- PHP字符串处理的10个简单方法
- php flv视频时间获取函数
- PHP常用代码大全(新手入门必备)
- 《Head First 设计模式》代码之PHP版(面向对象学习)
- PHP print类函数使用总结
- php url地址栏传中文乱码解决方法集合
- PHP+ACCESS 文章管理程序代码
- php $_SERVER["REQUEST_URI"]获取值的通用解决方法
- php自动加载的两种实现方法
- PHP定时自动生成静态HTML的实现代码
- PHP XML操作的各种方法解析(比较详细)