Citation de code source en PHPn° 25
09 Juillet, 2013 à 10:28
if ($ODIR = opendir($rep))
{
while (($file = readdir($ODIR)) !== false)
{
$ar=preg_split("/\./",$file,-1,PREG_SPLIT_NO_EMPTY);
if(count($ar)==2 && $ar["1"]=="jpg")
{
$gauche=$ar[0];
$res=preg_split("/-/",$gauche,-1,PREG_SPLIT_NO_EMPTY);
$cpt=count($res);
if($cpt==1 || $cpt==2)
{
$int=$res[0];
if(is_numeric($int))
{
$requete="select * from TABLE where (ETAT=".OK." or ETAT=".AUTRE.") AND CLEF".chaineSqlWhere($int);
$result=database_exec($requete);
if($result===false)
{
//echo $int." Ã supprimer : $requete\n";
//ob_flush();
}
}
}
}
}
}