gringlas / cakephp-base64tofile
Convert a base64 encoded string (like an image) to an actual file for usage in a standard file upload.
Installs: 585
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:cakephp-plugin
Requires
- php: >=7.2
- cakephp/cakephp: ^4.0
- laminas/laminas-diactoros: ^2.2.2
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-21 04:28:14 UTC
README
About
This plugin will convert a base64 encoded file string into a "classic" fileupload, like in $_FILES, which can then be passed to other fileuploads, like josegonzalez/cakephp-upload.
Installation
To install simply add it to your composer dependencies composer require gringlas/cakephp-base64tofile
.
The plugin is mainly a behavior, which you should attach to your file entity:
$this->addBehavior('Base64ToFile.Base64ToFile', [ 'field' => 'file' ]);
Where field
contains the name of the field with the base64 encoded file.