> php教程 > php手册 > php实例:ubuntu自动切换壁纸xml文件

php实例:ubuntu自动切换壁纸xml文件

WBOY
풀어 주다: 2016-06-06 19:57:38
원래의
913명이 탐색했습니다.

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php写的生成ubuntu自动切换壁纸xml文件 ?php /* * 生成ubuntu自动切换壁纸xml文件 */ //图片目录 $dir = '/home/yuxing/background'; $hd = opendir($dir) or die('can not open dir'); $files

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

    php写的生成ubuntu自动切换壁纸xml文件

   

    /*

    * 生成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

    $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实例:ubuntu自动切换壁纸xml文件

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿