我以base_encode的格式从Android收到了一张图片。我使用以下方法将图像保存在server.Image上传到服务器上但是上传的图像大小为0kb文件
<?php
$user_last_id = $this->User->getLastInsertID();
if(@$_FILES['profile_image']!='') {
$img = base64_decode($_FILES['profile_image']['name']);
$image_name = $user_last_id.'_'.time()."profileImage.png";
$this->User->saveField('profile_image',$image_name);
$pth = WWW_ROOT.'files'.DS.'profileimage'.DS.$image_name;
file_put_contents($pth, $img);
}
?>