diff --git a/HttpServer/Http/File.php b/HttpServer/Http/File.php index 5167d675..a006ca7c 100644 --- a/HttpServer/Http/File.php +++ b/HttpServer/Http/File.php @@ -67,7 +67,7 @@ class File */ public function getContent(): string { - $open = fopen('php://input', 'r'); + $open = fopen($this->getTmpPath(), 'r'); var_dump($open); $limit = 1024000;