Jump to content

Bloc Php images aléatoires


Bouh

Recommended Posts

Bonjour,

je souhaiterais mettre en place un bloc images aléatoires.

J'ai un script php faisant permettant de le réalisé.

Mon soucis est que je ne sais pas trop comment me dépatouiller pour l'intégrer à un bloc.

Code php :

<?
/*
+----------------+
| Configuration |
+----------------+
*/

$imgpath = ""; // chemins des images
$textalter = "image aleatoire"; // texte alternative de l'image (attribut alt)

/*
+--------------+
| Programme |
+--------------+
*/

$nodir = 0;
if ($imgpath == ".." || $imgpath == "." || $imgpath == "")
{
       $nodir = 1;
       $imgpath = ".";
}

$j = strlen($imgpath);
$j--;
if ($imgpath[$j] != '/' && $imgpath != ".")
       $imgpath .= '/';

if (is_dir($imgpath))
{

       if ($condir = opendir($imgpath))
       {
               $i = 0;
               while (($curfile = readdir($condir)) != false)
               {
                       $extension = "";
                       $extension = preg_replace("/.+\.(.{3,4})/", "$1", $curfile);
                       if ($extension == "png" || $extension == "gif" || $extension == "bmp" || $extension == "jpg" || $extension == "jpeg")
                       {
                               $i++;
                               $images{$i} = $curfile;
                       }
               }

               if ($images{1} == "")
               {
                       echo "Aucunes images dans le dossier !";
               }
               else
               {
                       $i = rand(1, $i);
                       $image = $images{$i};
                       echo "";
               }
       }
       else
       {
               echo "Impossible d'ouvrir le dossier d'image !";
       }
}
else
{
       echo "Le répertoire d'images spécifié est incorrect !";
}
?> 




Quelqu'un pourait il m'aider svp ?

Merci

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...