Last active
September 26, 2024 21:11
-
-
Save waska14/8b3bcebfad1f86f7fcd3b82927576e38 to your computer and use it in GitHub Desktop.
Laravel: create UploadedFile object from base64 string (autoremove temp file)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Helpers\File; | |
use Illuminate\Http\File; | |
use Illuminate\Http\UploadedFile; | |
use Illuminate\Support\Arr; | |
class FileHelper | |
{ | |
public static function fromBase64(string $base64File): UploadedFile | |
{ | |
// Get file data base64 string | |
$fileData = base64_decode(Arr::last(explode(',', $base64File))); | |
// Create temp file and get its absolute path | |
$tempFile = tmpfile(); | |
$tempFilePath = stream_get_meta_data($tempFile)['uri']; | |
// Save file data in file | |
file_put_contents($tempFilePath, $fileData); | |
$tempFileObject = new File($tempFilePath); | |
$file = new UploadedFile( | |
$tempFileObject->getPathname(), | |
$tempFileObject->getFilename(), | |
$tempFileObject->getMimeType(), | |
0, | |
true // Mark it as test, since the file isn't from real HTTP POST. | |
); | |
// Close this file after response is sent. | |
// Closing the file will cause to remove it from temp director! | |
app()->terminating(function () use ($tempFile) { | |
fclose($tempFile); | |
}); | |
// return UploadedFile object | |
return $file; | |
} | |
} |
👍
Thank You... I helped it so much
it really helped a lot
Thanks!
Perfetto!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!