PHP Web Development

Base64 encoded image save by PHP

How to save base64 encoded image in a file using PHP <?php  /// define upload directory     define(‘UPLOAD_DIR’, ‘images/’); /// explode  on ;base64  to know image type from encoded string    $image_parts = explode(“;base64,”, $_POST[‘image’]);     $image_type_aux = explode(“image/”, $image_parts[0]);     $image_type = $image_type_aux[1];     $image_base64 = base64_decode($image_parts[1]);    /// create file path with file name     $filepath = UPLOAD_DIR .’img_’. […]