我正在尝试使用 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 中做到这一点?