<?php $path = __DIR__; // list all files, with and without leading . $files = glob($path . '/{,.}[!.,!..]*', GLOB_BRACE); // list all files, except . and .. $files = glob($path . '/{,.}*', GLOB_BRACE);
You have javascript disabled. You will not be able to edit any code.