PHP - 如何将base64字符串解码为字节数组?

On the client side, users send encoded image file.(and also name and description of the item) But, what I receive is only empty file... In the server DB, I received the encoded image file with string like this

/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB AQEBAQEBAQEBAQEBAQEBAQE

this should be converted to byte array...and save it in my directory with the jpg file.

Here is my code.

<?php

// array for JSON response
$response = array();

// check for required fields
if (isset($_POST['name']) && isset($_POST['description']) && isset($_POST['photo'])) {

$name = $_POST['name'];
$description = $_POST['description'];
$photo = $_POST['photo'];

// include db connect class
require_once __DIR__ . '/db_connect.php';

// connecting to db
$db = new DB_CONNECT();

// mysql inserting a new row
$result = mysql_query("INSERT INTO products(name, description, photo) VALUES('$name', '$description', '$photo')");

// check if row inserted or not
if ($result) {
    // successfully inserted into database
    $response["success"] = 1;
    $response["message"] = "Product successfully created.";

    // echoing JSON response
    echo json_encode($response);



    //File Decoding
        $target_path = "/android_connect/";
        $base=$_REQUEST['image'];
        echo $base;
    // base64 encoded utf-8 string
        $binary=base64_decode($base);
    // binary, utf-8 bytes
        header('Content-Type: bitmap; charset=utf-8');
    // print($binary);
    //$theFile = base64_decode($image_data);
        $file = fopen($target_path, 'wb');
        $file = fopen($name, 'wb');
        fwrite($file, $binary);
        fclose($file);
    //move_uploaded_file($file,$target_path.$name);
        copy($name,$target_path.$name);

directory……';

} else {
    // failed to insert row
    $response["success"] = 0;
    $response["message"] = "Oops! An error occurred.";

    // echoing JSON response
    echo json_encode($response);
}
} else {
// required field is missing
$response["success"] = 0;
$response["message"] = "Required field(s) is missing";

// echoing JSON response
echo json_encode($response);
}
?>

please let me know what's wrong with the php code...