<code>$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); </code>
我是把图片转换为Base64后上传的,但是用file_put_contents函数只能放在该脚本的目录,请问怎么把上传的图片移动到想要的目录下呢?
<code>$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); </code>
我是把图片转换为Base64后上传的,但是用file_put_contents函数只能放在该脚本的目录,请问怎么把上传的图片移动到想要的目录下呢?
file_put_contents的第一个参数filename是可以带路径的,所以你这里只要修改$imageName变量为你要移动的目录以及文件名即可,类似如下代码:
<code>file_put_contents("../static/images/1.png", $imageBase64);</code>
熟悉一下手册先https://secure.php.net/manual...
保存的路径可以拼接的,所以,拼接成你想要上传的路径,也可以是绝对路径哦