如何使用PHP将Filepond图片上传到MySql?

时间:2020-03-11 17:35:16

标签: php mysql filepond

我已经将javascript包含在我的项目中,并且FilePond在FrontEnd上运行良好,如下所示:

enter image description here

这是我的HTML中的代码: 当我提交表格时,这就是我得到的filepond: enter image description here 码: https://snipsave.com/user/viktorgavrilovic/snippet/TpgWPYaBBmWe1N44YO/

现在,如何将图像保存到文件夹,例如:C:/ temp /?

我知道我必须解码,因为数据是base64编码的,到目前为止,这是我的PHP,其解码格式为:

$filepond = $_POST["filepond"];
$json_decoded = json_decode($filepond[0], true);
var_dump($json_decoded);

这是我从解码格式中得到的: enter image description here 码: https://snipsave.com/user/viktorgavrilovic/snippet/u3Th8eqrzvmq6IAWAI/

能否请您告诉我下一步该怎么做才能将图像保存在文件夹和MySql DB中?非常感谢!

0 个答案:

没有答案