- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
if (is_dir($mainDir))
{
if ($dh = opendir($mainDir))
{
while (($file = readdir($dh)) !== false)
{
if ( ($file!='.') && ($file!='..') ) $regions.=$file.',';
}
closedir($dh);
}
}
$regions = substr($regions, 0, -1);
$arrRegions = explode(",", $regions);
Комментарии (4) RSS
Добавить комментарий