span style="color: #0000BB"><?php/** * @author Gemorroj * @copyright 2009.2.18 15:6 */ // открываем папку$open = opendir('css/');// читаем ееwhile(($file = readdir($open)) !== false){ // смотрим расширение $type = strtolower(strrchr($file, '.')); // если css if($type == '.css'){ echo $file; }}?> |