Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php file iterator


Shows us all files and catalogues in directory except "." and "..".

<?php

foreach (new DirectoryIterator('../moodle') as $fileInfo) {
    if($fileInfo->isDot()) continue;
    echo $fileInfo->getFilename() . "<br>
";
}

?>

Comment

PREVIOUS NEXT
Code Example
Php :: laravel change db connection on the fly 
Php :: wpdb get column 
Php :: remove jquery wp 
Php :: twig render string 
Php :: assign to array array of values php 
Php :: pest check url status 
Php :: wp_query start from second post 
Php :: Find category name & link 
Php :: media library laravel maximum allowed size 
Php :: laravel getClientOriginalExtension 
Php :: recursive directory only listing php 
Php :: add class to row laravel 
Php :: laravel repository 
Php :: status code 301 
Php :: magento 2 remove order 
Php :: generate report daily weekly monthly php mysql 
Php :: blade Keep input values after failed validation 
Php :: php dar echo em um stdClass 
Php :: readable date in php 
Php :: laravel disable logging 
Php :: does xampp install php 
Php :: Allowed memory size of 33554432 bytes exhausted (tried to allocate 8192 bytes) 
Php :: php else 
Php :: change apply coupon text woocommerce 
Php :: set border phpoffice phpexcel 
Php :: session in laravel 
Php :: wordpress shortcode api 
Php :: laravel get route action 
Php :: php access class variable 
Php :: taxonomy-{taxonomy-slug}.php 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =