php读取文件规则,只能一行一行读取不能一行中间隔开读取
{$file=file_get_contents($url);//读取文件$lines=explode(PHP_EOL,$file);foreach($linesas$k...
{
$file = file_get_contents($url); //读取文件
$lines = explode(PHP_EOL, $file);
foreach($lines as $key=>$value)
{
$lines[$key]=explode(" ",$value)
}
return $lines;
}
?> 展开
$file = file_get_contents($url); //读取文件
$lines = explode(PHP_EOL, $file);
foreach($lines as $key=>$value)
{
$lines[$key]=explode(" ",$value)
}
return $lines;
}
?> 展开
1个回答
2016-05-28
展开全部
<?php
$c = getLine('./a.txt', 10); // 读取a.txt文件第10行内容
echo $c;
/**
* 获取指定行内容
*
* @param $file 文件路径
* @param $line 行数
* @param $length 指定行返回内容长度
*/
function getLine($file, $line, $length = 4096){
$returnTxt = null; // 初始化返回
$i = 1; // 行数
$handle = @fopen($file, "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, $length);
if($line == $i) $returnTxt = $buffer;
$i++;
}
fclose($handle);
}
return $returnTxt;
}
$c = getLine('./a.txt', 10); // 读取a.txt文件第10行内容
echo $c;
/**
* 获取指定行内容
*
* @param $file 文件路径
* @param $line 行数
* @param $length 指定行返回内容长度
*/
function getLine($file, $line, $length = 4096){
$returnTxt = null; // 初始化返回
$i = 1; // 行数
$handle = @fopen($file, "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, $length);
if($line == $i) $returnTxt = $buffer;
$i++;
}
fclose($handle);
}
return $returnTxt;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询