我正在尝试使用php获取文件的fuul路径。 因为我使用了这个:
<form method="get" action="">
<label for="fichier">Choisir votre fichier : </label>
<input type="file" name="fichier"><br>
<input type="submit" value="procéder">
</form>
我想在提交表单时提交文件的完整路径,而不仅仅是它的基本名称。
我怎么能在php中做到这一点?
答案 0 :(得分:-1)
如果你使用本地主机将是
http://localhost/path to the file /
如果你使用服务器将是你的文件的URL,包括http://和/在最后