我想在 PHP 中获取图像的完整路径。我使用<input>
标签来上传图片。我无法获得完整路径。当我提醒 的值时<input type="file">
,我得到
c:/fake-path/image.jpg
这是我的代码:
<input type="file" name="upload_captcha_background" id="upload_captcha_background" />
var file_path= jQuery("#upload_captcha_background").val();
alert(file_path);
在 PHP 中,我正在获取如下值:
$ux_image_path =$_FILES['upload_captcha_background'];