2
我有一個包含數據的文本文件,例如:我想只從我的文本文件中使用PHP讀取特定行
something1
something2
something3
something4
我需要獲取第四行的數據並在php中回顯它。
我試過網上的代碼,但它不起作用。
謝謝。
我有一個包含數據的文本文件,例如:我想只從我的文本文件中使用PHP讀取特定行
something1
something2
something3
something4
我需要獲取第四行的數據並在php中回顯它。
我試過網上的代碼,但它不起作用。
謝謝。
<?php
echo file("txtfile")['3'];
?>
這應該工作,它逐行讀取文件並在第三行中斷。
<?php
$file = fopen("test.txt","r");
$i =0;
while(! feof($file))
{
if($i==3){
echo fgets($file). "<br />";
break;
}
$i++;
}
fclose($file);
?>
你試過了什麼代碼? – DanM7 2014-10-13 03:10:28