apache - PHP timeout while moving files with rename -
while moving thousands of files using
foreach ($list_of_files $file) { rename($file, 'another_folder/' . $file); } can php timeout in middle of rename() causing 1 single file moved partially?
Comments
Post a Comment