php程式碼 產生ubuntu自動切換壁紙xml檔的php程式碼

WBOY
發布: 2016-07-29 08:43:17
原創
1127 人瀏覽過

複製程式碼 程式碼如下:


5
/*
* 產生ubuntu自動切換桌布xmlphp
/*
* 產生ubuntu自動切換桌布xmlphp
/*
* 產生ubuntu自動切換桌布xmlphp
*/
//圖片目錄
$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程式碼,包含了php程式碼的內容,希望對PHP教學有興趣的朋友有幫助。
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!