|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不断巩固,摸透大部分PHP常用函数,并可理解OOP,MYSQL优化,以及模板源代码 <LI class=content id=pre_1155973685><?php
/*
站内全文搜刮引擎
作者:yannan
*/
function tree($directory)
{
global $string;
$mydir=dir($directory);
while($file=$mydir->read())
{
if((is_dir("$directory/$file")) AND ($file!=".") AND ($file!=".."))
{
tree("$directory/$file");
}
else
{
//反省文件类型,只搜刮.php/html/htm文件
if((strstr($file,".php")==".php")||(strstr($file,".html")==".html")||(strstr($file,".htm")==".htm"))
{
//翻开文件
if(!($myfile=fopen($directory."/".$file,"r")))
{
print("file could not be opened");
exit;
}
//搜刮文件内容
while(!feof($myfile))
{
//read a line from the file
$myline=fgets($myfile,500);
if(ereg($string,$myline))
{
//输入了局
$path=substr($directory,2);
print("found <font color=\"ff00cc\">$string</font>");
print("in <a href=\"");
print($path."/".$file);
print("\">");
print($directory."/".$file);
print("</a><br>\n");
print(strip_tags($myline));
print("<br>\n");
}
} //endwhile of out put the file
fclose($myfile);
} //endif
} //endelse
} //endwhile
$mydir->close();
} //endfunction
//start the program
print("<form method=\"post\">\n");
print("搜刮关头字:");
print("<input type=\"text\" name=\"string\" size=\"30\">\n");
print("<input type=\"submit\" value=\"submit\"><br>\n");
print("</form>");
if((isset($string)) AND ($string!=""))
{
$root=".";
tree($root);
}
?>
实现固定数量的几张图片的上传;再如调试软件ZendStudio的使用,看了很多次老师的应用,但总感觉用的不顺手,不懂那么多的数据值,到底哪一个才是真正的问题所在;还有如数据库语句的封装,我只会用简单的函数来进行封装。 |
|