![]()
![]()
![]()
Codice PHP:
<?php
// correggi il percorso alla tua cartella
$items = glob('../images/cover/*', GLOB_BRACE);
$items = array_filter($items, 'is_file');
function esiste_slider_in_stringa($string){
if(strpos($string, 'slider')===FALSE){
return FALSE;
}
return TRUE;
}
$items = array_filter($items, 'esiste_slider_in_stringa');
foreach( $items as $pos ){
echo '[img]'.$pos.'[/img]'."
";
}