如何使用cake php在服务器上上传Base_encode图像

时间:2016-07-16 12:53:50

标签: cakephp base64 image-uploading

我以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);
    }
 ?>

0 个答案:

没有答案