Nieuw lid |
|
Mijn code:
<?php
// instellingen
$directory = '.';
$exclude = array('gif', 'bmp');
$plaatje = 'images/list.png';
$open = opendir($directory);
while($read = readdir($open))
{
// filter toepassen
$ext = array_pop(explode('.', $read));
if($ext != $exclude)
{
echo ''.$read.'<br>';
}
}
?>
<?php // instellingen $directory = '.'; $exclude = array('gif', 'bmp'); $plaatje = 'images/list.png'; { // filter toepassen if($ext != $exclude) { } } ?>
Ik heb een array, en wil dat alle .gif en .bmp bestanden niet weergegeven worden.. kan iemand mij vertellen hoe ik dit correct moet uitvoeren svp?
|