International PHP Conference Munich 2025

Voting

: two minus zero?
(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