15
Cuente cuántos archivos en el directorio PHP
Estoy trabajando en un proyecto un poco nuevo. Quería saber cuántos archivos hay en un directorio determinado. <div id="header"> <?php $dir = opendir('uploads/'); # This is the directory it will count from $i = 0; # Integer starts at 0 before counting # While false is not equal to the …