Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $i = 0;
- $dir = 'images/';
- if ($handle = opendir($dir)) {
- while (($file = readdir($handle)) !== false){
- if (!in_array($file, array('.', '..')) && !is_dir($dir.$file))
- $i++;
- }
- }
- echo $i;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment