Функция readdir удаляет файлы при присваивании
$files[] = $entry;
Мне же нужно чтоб не удалялись данные. Я не уверен что они должны удаляться. OS Ubuntu.
Почему это происходит? Как я могу их получить и не удалить?
// Scan the directory and create the list of uploaded files.
$files = [];
$handle = opendir($this->saveToDir);
while (false !== ($entry = readdir($handle))) {
if($entry=='.' || $entry=='..')
continue; // Skip current dir and parent dir.
$files[] = $entry;
}
closedir($handle);
// Return the list of uploaded files.
return $files;