0

我正在尝试使用 php 获取文件的完整路径。为此,我使用了这个:

<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 中做到这一点?

4

1 回答 1

-1

如果您使用本地主机将是

http://localhost/path to the file  /

如果您使用服务器,则该文件的 URL 将包括 http:// 和 / 结尾

于 2013-11-04T19:48:03.323 回答