Voting

: max(four, nine)?
(Example: nine)

The Note You're Voting On

synnus at gmail dot com
5 years ago
<?php

// if( $entry[0] != '.' ) best for ' . ' and ' .. '

$d = dir( '.' );
echo
"Pointeur : " . $d->handle . "\n";
echo
"Chemin : " . $d->path . "\n";
while (
false !== ($entry = $d->read())) {
if(
$entry[0] != '.') {
echo
$entry, PHP_EOL;
}
}
$d->close();

?>

<< Back to user notes page

To Top