', $chaine); $chaine = str_replace("[photo?description]", conv_html(description_photo($photo)), $chaine); } else { $chaine = str_replace("[photo?]", "", $chaine); $chaine = str_replace("[photo?description]", "", $chaine); } } return $chaine; } // Renvoie le nom d'une image prise aléatoirement dans le dossier "photos" function photo_aleatoire () { $img = array(); $dossier = opendir("photos"); while ($fichier = readdir($dossier)) { if (is_file("photos/".$fichier) && $fichier != "index.php" && strtolower($fichier) != "thumbs.db") { $img[] = $fichier; } } closedir($dossier); mt_srand((double)microtime() * 1000000); if (count($img) > 0) return $img[mt_rand(0, count($img) - 1)]; else return ""; } //----------------------------------------------------------------------------- ?>