我用file_put_contents上传图片,但是只能保存在当前目录,怎么把该图片移动到想要的目录呢?
程序员文章站
2022-03-26 12:51:32
...
$id = $_POST['id'];
$name = $_POST['name'];
$address = $_POST['address'];
$phonenumber = $_POST['phonenumber'];
$image = $_POST['image'];//得到图片
$imageBase64 = base64_decode($image);
$host = $_SERVER['HTTP_HOST'];//获取主机IP
$post = $_SERVER['HTTP_PORT'];//获取主机端口
$imageName = $id.".png";//生成的图片名称和用户ID一样
$file_put = file_put_contents($imageName, $imageBase64);
我是把图片转换为Base64后上传的,但是用file_put_contents函数只能放在该脚本的目录,请问怎么把上传的图片移动到想要的目录下呢?
回复内容:
$id = $_POST['id'];
$name = $_POST['name'];
$address = $_POST['address'];
$phonenumber = $_POST['phonenumber'];
$image = $_POST['image'];//得到图片
$imageBase64 = base64_decode($image);
$host = $_SERVER['HTTP_HOST'];//获取主机IP
$post = $_SERVER['HTTP_PORT'];//获取主机端口
$imageName = $id.".png";//生成的图片名称和用户ID一样
$file_put = file_put_contents($imageName, $imageBase64);
我是把图片转换为Base64后上传的,但是用file_put_contents函数只能放在该脚本的目录,请问怎么把上传的图片移动到想要的目录下呢?
file_put_contents的第一个参数filename是可以带路径的,所以你这里只要修改$imageName变量为你要移动的目录以及文件名即可,类似如下代码:
file_put_contents("../static/images/1.png", $imageBase64);
熟悉一下手册先https://secure.php.net/manual...
保存的路径可以拼接的,所以,拼接成你想要上传的路径,也可以是绝对路径哦
上一篇: php 常量定义的问题
下一篇: 简单实现PHP读取并输出XML文件数据