PHP
Überschrift („läuft ab: Montag, 26. Juli 1997-05:00: GMT 00“);
Überschrift („Last modified: “. gmdate („D, d M Y H: I: s“). „GMT“);
Überschrift („Pufferspeicher-Steuerung: Keinpufferspeicher, muss-revalidate“);
Überschrift („Pragma: Keinpufferspeicher“);
Überschrift („Inhalt-Art: Anwendung/xml; charset=utf-8“);
$xml = „ xml version= " 1.0 "? >“;
$directory = „testimages/“;
wenn (file_exists ($directory) && is_dir ($directory)){
$handle = opendir ($directory);
während (($file = readdir ($handle))! == falsch) {
wenn (! is_dir ($file)){
$ext = substr ($file, -3);
wenn ($ext == „Jpg“ || $ext == „GIF“ || $ext == „png“) {
$xml. = „“;
$xml. = „“. $file. „“;
$xml. = „image caption“;
$xml. = „“;
}
}
}
}
$xml. = „“;
Echo $xml; |