我试图获取文件的路径。
我的代码是:
$htmlcode = '<input type="file" id="fileinput" placeholder="Recherche QR Code" title="Recherche à partir d\'un fichier .txt" />';
$path = "";
getTabQrCode($path);
function getTabQrCode($path){
$tab_qr = Array();
$index = 0;
$file_handle = fopen($path, "r");
while (!feof($file_handle) ) {
$line_of_text = fgets($file_handle);
$parts = explode('=', $line_of_text);
print $parts[0] . $parts[1]. "<BR>";
$tab_qr[$index] = $parts[0];
$index++;
}
$index = 0;
fclose($file_handle);
}
echo $htmlcode;
我希望$ path获取上传文件路径的值... 可能吗 ?
答案 0 :(得分:0)
您可以使用$_FILES
数组
您需要为文件输入命名并将enctype属性添加到表单中,否则将不会上载文件。完成后,您可以使用$_FILES['myFileName']['tmp_name']