Skip to content

Commit 3653dab

Browse files
committed
Removing temp files after downloading
1 parent 5ee9468 commit 3653dab

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

bridges/php/handler.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,13 @@ public function getContent($path)
274274
$fileName = explode('/', $filePath);
275275
$fileName = end($fileName);
276276
$tmpFilePath = $oFtp->downloadTemp($filePath);
277+
278+
@register_shutdown_function(function() use ($tmpFilePath) {
279+
if (file_exists($tmpFilePath)) {
280+
@unlink($tmpFilePath);
281+
}
282+
});
283+
277284
if ($fileContent = @file_get_contents($tmpFilePath)) {
278285
$oResponse->setData($fileContent);
279286
$oResponse->setHeaders(array(
@@ -304,4 +311,4 @@ public function getContent($path)
304311
$oResponse->flush();
305312
}
306313

307-
throw new \Exception('This action is not available in the demo');
314+
throw new \Exception('This action is not available in the demo');

0 commit comments

Comments
 (0)