我正在制作一个小型php程序,可以在其中使用html表单将txt文件上传到服务器。我已经上传了工作文件,并且fopen语法可以从txt -file读取两行,但它只会读取代码中指向的行。
如何修复将代码打开以从最新上传的txt文件读取两行的代码? 到目前为止,这是代码。
<?php
if(isset($_FILES['tiedosto'])){
$errors= array();
$file_name = $_FILES['tiedosto']['name'];
$file_size =$_FILES['tiedosto']['size'];
$file_tmp =$_FILES['tiedosto']['tmp_name'];
$file_type=$_FILES['tiedosto']['type'];
$file_ext=strtolower(end(explode('.',$_FILES['tiedosto']['name'])));
$extensions= array("doc","txt","jpg");
if(in_array($file_ext,$extensions)=== false){
$errors[]="Tiedostomuoto ei sallittu, valitse joko jpg or txt file.";
}
if($file_size > 2097152){
$errors[]='File size must be excately 2 MB';
}
if(empty($errors)==true){
move_uploaded_file($file_tmp,"files/".$file_name);
echo "Success";
}else{
print_r($errors);
}
}
?>
<html>
<body>
<form action="" method="POST" enctype="multipart/form-data">
<input type="file" name="tiedosto" />
<input type="submit"/>
</form>
</body>
</html>
<?php
$myfile = fopen("files/*.txt", "r+");
if ($myfile === false){
die ("Unable to open file!");
}
for ($i = 0; $i <2; $i++){
$line = fgets($myfile);
if ($line !== false){
echo $line;
}
else
{
die ("Unable to open file!");
}
}
echo fgets($myfile);
fclose($myfile);
?>