php读取单文件变成读取指定多文件逐行读取,求修改代码。
<?phpini_set("error_reporting","E_ALL&~E_NOTICE");$contbody="";functionMakePage($char...
<?php
ini_set("error_reporting","E_ALL & ~E_NOTICE");
$contbody="";
function MakePage($charset,$where,$houzhui)
{
if($contbody=="")
{
$keywords = @file_get_contents("con5a/keyword.txt");
$arrs = preg_split("/(\n|\r\n|\r|\t)/",$keywords);
$alls= count($arrs);
$cont = @file_get_contents("con5a/view.txt");
}
function Run_Body($count){
$output = mt_rand(1,$count);
$contbody = @file_get_contents("con5a/data/$output.txt");
return $contbody;
}
function randomkeys($length){
$output='';
for($a=0;$a<$length;$a++){
$output.=chr(mt_rand(57,48));//生成php随机数
$output.=chr(mt_rand(122,97));//生成php随机数
}
return $output;
}
function randshuzi($length){
$output='';
for($a=0;$a<$length+1;$a++){
if (mt_rand(0,9)>5)
{
$output.=chr(mt_rand(122,97));//生成php随机数
}
else
{
$output.=mt_rand(0,9);
}
}
return $output;
}
?>
如何把
$keywords = @file_get_contents("keyword.txt");
$arrs = preg_split("/(\n|\r\n|\r|\t)/",$keywords);
$alls= count($arrs);
如何把单独读取
keyword.txt
变成读取
key目录下面所有txt文件来实现,并且要实现逐行读取。
就是像读取contbody这个函数变量一样实现读取data目录下的所有txt文件。
顺便帮忙检错下我代码哪里不规范了,会报错,只能写忽略文件头。。。
感谢。。 展开
ini_set("error_reporting","E_ALL & ~E_NOTICE");
$contbody="";
function MakePage($charset,$where,$houzhui)
{
if($contbody=="")
{
$keywords = @file_get_contents("con5a/keyword.txt");
$arrs = preg_split("/(\n|\r\n|\r|\t)/",$keywords);
$alls= count($arrs);
$cont = @file_get_contents("con5a/view.txt");
}
function Run_Body($count){
$output = mt_rand(1,$count);
$contbody = @file_get_contents("con5a/data/$output.txt");
return $contbody;
}
function randomkeys($length){
$output='';
for($a=0;$a<$length;$a++){
$output.=chr(mt_rand(57,48));//生成php随机数
$output.=chr(mt_rand(122,97));//生成php随机数
}
return $output;
}
function randshuzi($length){
$output='';
for($a=0;$a<$length+1;$a++){
if (mt_rand(0,9)>5)
{
$output.=chr(mt_rand(122,97));//生成php随机数
}
else
{
$output.=mt_rand(0,9);
}
}
return $output;
}
?>
如何把
$keywords = @file_get_contents("keyword.txt");
$arrs = preg_split("/(\n|\r\n|\r|\t)/",$keywords);
$alls= count($arrs);
如何把单独读取
keyword.txt
变成读取
key目录下面所有txt文件来实现,并且要实现逐行读取。
就是像读取contbody这个函数变量一样实现读取data目录下的所有txt文件。
顺便帮忙检错下我代码哪里不规范了,会报错,只能写忽略文件头。。。
感谢。。 展开
展开全部
function ls($dir, $mask /*.php$|.txt$*/)
{
static $i = 0;
$files = Array();
$d = opendir($dir);
while ($file = readdir($d))
{
if ($file == '.' || $file == '..' || eregi($mask, $file) ) continue;
if (is_dir($dir.'/'.$file))
{
$files += ls($dir.'/'.$file, $mask);
continue;
}
$files[$i++] = $dir.'/'.$file;
}
return $files;
}
$root = dirname(__FILE__);
$f = ls($root, ".php$" /*no spaces*/);
foreach ($f as $v){
print_r($v."<br>\r\n");//所有文件名
}
==============================
上面的代码可以实现所有文件读取
还有这个的话:
$keywords = @file_get_contents("keyword.txt");
$arrs = preg_split("/(\n|\r\n|\r|\t)/",$keywords);
$alls= count($arrs);
可以直接改为
$arrs = file("keyword.txt");
$alls= count($arrs);
==============================
$contbody = @file_get_contents("con5a/data/$output.txt");
变量加{$output}
{
static $i = 0;
$files = Array();
$d = opendir($dir);
while ($file = readdir($d))
{
if ($file == '.' || $file == '..' || eregi($mask, $file) ) continue;
if (is_dir($dir.'/'.$file))
{
$files += ls($dir.'/'.$file, $mask);
continue;
}
$files[$i++] = $dir.'/'.$file;
}
return $files;
}
$root = dirname(__FILE__);
$f = ls($root, ".php$" /*no spaces*/);
foreach ($f as $v){
print_r($v."<br>\r\n");//所有文件名
}
==============================
上面的代码可以实现所有文件读取
还有这个的话:
$keywords = @file_get_contents("keyword.txt");
$arrs = preg_split("/(\n|\r\n|\r|\t)/",$keywords);
$alls= count($arrs);
可以直接改为
$arrs = file("keyword.txt");
$alls= count($arrs);
==============================
$contbody = @file_get_contents("con5a/data/$output.txt");
变量加{$output}
更多追问追答
追问
可以直接改为
$arrs = file("keyword.txt");
$alls= count($arrs);
我要的是读取keyword.txt变成读取循环读取逐行key目录下所有txt文档哦
这样 执行效率会加快吗?我怕给服务器带来更大的负担
有更好的优化方案吗?现在就是服务器负担挺大的
追答
肯定比你现在的好,你可以去查手册
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询