Skip to content

Instantly share code, notes, and snippets.

@rogeriotaques
rogeriotaques / base64topdf-working.php
Last active December 21, 2023 09:41
Converts base64 string back to a pdf file
<?php
public function uploadFileFromBlobString($base64string = '', $file_name = '', $folder = '')
{
$file_path = "";
$result = 0;
// Convert blob (base64 string) back to PDF
if (!empty($base64string)) {