Horje
php file iterator Code Example
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>\n";
}

?>

Source: www.php.net




Php

Related
Call to undefined function GuzzleHttp\_idn_uri_convert() Code Example Call to undefined function GuzzleHttp\_idn_uri_convert() Code Example
date_default_timezone_set(): timezone id Code Example date_default_timezone_set(): timezone id Code Example
contact form 7 get form id Code Example contact form 7 get form id Code Example
php max Code Example php max Code Example
how to check if page opened from mobile or desktop Code Example how to check if page opened from mobile or desktop Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8