We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee9468 commit 3653dabCopy full SHA for 3653dab
bridges/php/handler.php
@@ -274,6 +274,13 @@ public function getContent($path)
274
$fileName = explode('/', $filePath);
275
$fileName = end($fileName);
276
$tmpFilePath = $oFtp->downloadTemp($filePath);
277
+
278
+ @register_shutdown_function(function() use ($tmpFilePath) {
279
+ if (file_exists($tmpFilePath)) {
280
+ @unlink($tmpFilePath);
281
+ }
282
+ });
283
284
if ($fileContent = @file_get_contents($tmpFilePath)) {
285
$oResponse->setData($fileContent);
286
$oResponse->setHeaders(array(
@@ -304,4 +311,4 @@ public function getContent($path)
304
311
$oResponse->flush();
305
312
}
306
313
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