【发布时间】:2019-09-30 21:49:37
【问题描述】:
我正在接收来自 android 的 base64 编码图像,我想将其上传到 yii2
所以我添加了以下内容
$success = file_put_contents(Yii::getAlias('@web').'/uploads/img.png'
,base64_decode($detail));
这里的 $detail 是 base 64 编码的图像
当我尝试上传时出现错误
yii\base\ErrorException: file_put_contents(/uploads/img.png):
failed to open stream: No such file or directory
我还需要添加什么才能使上传正常工作,因为大多数结果都显示上述内容
【问题讨论】:
标签: php file-upload yii2