我想创建一个上传文件的程序,不管文件里面是什么,我都会通过使用textarea来输出它。但我的问题是,由于浏览器的安全性,我无法获得上传文件的完整路径。我尝试使用此How to get the path of a file before its uploaded?作为参考,但它只显示伪路径。主要问题是我无法获得将其存储在变量中的完整路径。知道怎么做吗?
我使用此代码获取文件名
<?php
if(isset($_POST['btnSubmit']))
{
$fileName = $_POST['file'];
$fullPath = (realpath).$fileName;
--here there must be a variable that will hold the fullpath but the $fullPath is wrong way to declare.
echo $fullPath."\n\n";
}
?>