生成ubuntu自动切换壁纸xml文件的php代码
作者:bea
代码如下: <?php /* * 生成ubuntu自动切换壁纸xml文件 */ //图片目录 $dir = '/home/yuxing/background'; $hd = opendir($dir) or die('can not open dir'); $files = array(); while($file = readdir($hd)) { $tem = "$dir/$file"; if (is_file($tem) &&a
代码如下:
<?php
/*
* 生成ubuntu自动切换壁纸xml文件
*/
//图片目录
$dir = '/home/yuxing/background';
$hd = opendir($dir) or die('can not open dir');
$files = array();
while($file = readdir($hd)) {
$tem = "$dir/$file";
if (is_file($tem) && in_array(strtolower(substr(strrchr($file,'.'), 1)), array('jpg', 'gif')))
$files[] = $tem;
}
closedir($hd);
unset($file);
$xw = new xmlWriter();
$xw->openMemory();
$xw->setIndent(true);
$xw->setIndentString(' ');
$xw->startDocument('1.0', 'utf-8');
$xw->startElement('background');
$xw->startElement('starttime');
$xw->writeElement('year', '2000');
$xw->writeElement('month', '01');
$xw->writeElement('day', '01');
$xw->writeElement('hour', '00');
$xw->writeElement('minute', '00');
$xw->writeElement('second', '00');
$xw->endElement();
$count = count($files);
for ($i=0; $i<$count; $i++) {
$xw->startElement('static');
//$xw->writeElement('duration', '1795.0');
$xw->writeElement('duration', '30.0');
$xw->writeElement('file', $files[$i]);
$xw->endElement();
$xw->startElement('transition');
$xw->writeElement('duration', '5');
$xw->writeElement('from', $files[$i]);
$xw->writeElement('to', isset($files[$i+1]) ? $files[$i+1] : $files[0]);
$xw->endElement();
}
$xw->endElement();
$xml = $xw->outputMemory(true);
//生成文件
$hd = fopen($dir . "/yuxing.xml", 'wb');
fwrite($hd, $xml);
fclose($hd);
echo 'ok';
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php抓取页面与代码解析 推荐
- 由php的call_user_func传reference引发的思考
- Google Voice 短信发送接口PHP开源版(2010.5更新)
- PHP 飞信好友免费短信API接口开源版
- PHP计划任务之关闭浏览器后仍然继续执行的函数
- PHP垃圾回收机制简单说明
- PHP多线程抓取网页实现代码
- php上传文件的增强函数
- php 模拟POST|GET操作实现代码
- UCenter中的一个可逆加密函数authcode函数代码
- PHP连接SQLServer2005 的问题解决方法
- 在Windows系统上安装PHP运行环境文字教程
- ajax实现无刷新分页(php)
- php将会员数据导入到ucenter的代码
- php 无限级数据JSON格式及JS解析
- php下使用strpos需要注意 === 运算符
- 按上下级层次关系输出内容的PHP代码
- PHP开发负载均衡指南
- PHP无敌近乎加密方式!