PHP 8.5.0 Beta 1 available for testing

Voting

: six plus three?
(Example: nine)

The Note You're Voting On

osamahussain897 at gmail dot com
7 years ago
<?php
if ($handle = opendir('../')) {

while(
$entry = readdir($handle)){
$ent[] = $entry;
}

echo
$ent[0]; // Access To Custom Directory or File;
closedir($handle);
}
?>

<< Back to user notes page

To Top