Home Backend Development PHP Tutorial 遍历FTP下目录和文件生成数据库--可以做小规模的FTP搜索引擎_PHP

遍历FTP下目录和文件生成数据库--可以做小规模的FTP搜索引擎_PHP

Jun 01, 2016 pm 12:34 PM
Can search engine database document generate Table of contents

P>
//ftp信息
$ftp_server="xxxxxxxxxxx";   //FTP服务器的地址
$username="xxx";                           //要查询目录
$userpassword="xxxxxx";               //相映的密码
//数据库信息
$localhost="localhost";                    //一般是localhost
$datauser="xxx";                            //数据库用户名
$datapassword="xxxxx";                 //数据库用户密码
$database="xxxxx";                        //数据库名称

 

//数据表建立信息 realfly是表名
// CREATE TABLE realfly (
//   name text NOT NULL,
//   id tinyint(4) unsigned NOT NULL auto_increment,
//   date date DEFAULT '0000-00-00' NOT NULL,
//   time time DEFAULT '00:00:00' NOT NULL,
//   content longtext NOT NULL,
//   KEY id (id)
// );

?>


###################################################
#程序:              FTP搜索引擎递归函数文件                    #
#文件:              class.php                                                #
#姓名:              网络骑士                                               #
#所用技术:           php&mysql                                           #
#版本:              v1.0                                                      #
#联系:              shakespareshmily@sina.com.cn               #
###################################################

function happy($ftp_stream,$directory,$link)

{

 if(is_dir($directory))

 {

  //$today=(date("Y")."-".date("m")."-".date("d"));

  //$content=$directory;

  //$time=date("H:i:s");

  //$query="INSERT INTO realfly VALUES (', ', '$today', '$time', '$content');";

  //mysql_query($query,$link);

  //$color="FF3399";

  //echo  "".$directory."
";

  $result=ftp_nlist($ftp_stream,$directory);

  for ($j=0;$j

 

                                       happy($ftp_stream,$result[$j],$link);

                                    }

 }

 else {

  $basename=basename($directory);
  $file=explode(".",$basename);

  $id=$i++;

  $today=(date("Y")."-".date("m")."-".date("d"));


  $content=$directory;

  //$content4=$directory;

  $time=date("H:i:s");

  $query="INSERT INTO realfly VALUES ('$file[0]', '$id', '$today', '$time', '$content');";

  mysql_query($query,$link);

 echo $directory."
";
 }

}

?>


  include ("./search_ini.php");
  include ("./class.php");
###################################################
#程序:              FTP搜索引擎主文件                               #
#文件:              search.php                                              #
#姓名:              网络骑士                                               #
#所用技术:           php&mysql                                            #
#版本:              v1.0                                                       #
#联系:              shakespareshmily@sina.com.cn                #
###################################################

$ftp_stream=ftp_connect($ftp_server,21);
$login=ftp_login($ftp_stream,"$username","$userpassword");
if(!$login||!$ftp_stream){
                         echo "cannot connect to $ftp_server";
                         echo "try again";
                         }
else
                         {
                         echo "connect to $ftp_server
CONGRATULATIONS!

";
                         }
                         $link=mysql_pconnect("$localhost","$datauser","$datapassword");
                         mysql_select_db("$database",$link);
$this=ftp_pwd($ftp_stream);
$this=@ftp_chdir($ftp_stream,"");

$result=ftp_nlist($ftp_stream,$this);
for ($i=0;$i{
if (is_dir($result[$i]))
 {
 happy($ftp_stream,$result[$i],$link);
 }
 else {echo $result[$i]."
";
  $basename=basename($result[$i]);
  $file=explode(".",$basename);
  $id=$i;
  $today=(date("Y")."-".date("m")."-".date("d"));
  $content="$result[$i]";
  $time=date("H:i:s");
  $query="INSERT INTO realfly VALUES ( '$file[0]', '$id', '$today', '$time', '$content');";
  mysql_query($query,$link);
  }
}
?>

以上是后台的搜索处理程序,下面是用户查询处理程序

###########################################

#软件名:     FTP搜索引擎显示页面                   #

#版本:       v1.0                                                #

#所用技术:   php&mysql                                   #

#作者:       网络骑士                                        #

#联系方式:   shakespareshmily@sina.com.cn      #

###########################################

include ("./search_ini.php");

//connect to database

$link=mysql_pconnect("$localhost","$datauser","$datapassword") or die ("无法连接服务器,请稍后再试!");

//select database

mysql_select_db("$database",$link);

//make query

$query="select name,content from realfly where name='$query1' ";
echo "您所查询的字段:        "; echo "$query1.
";
$i=0;
$result=mysql_query($query,$link);
if($result)
{while(list($name,$content)=mysql_fetch_row($result))
  { echo "您所能查询到的结果:     ";
    $content3="ftp://xxxxxxxx";                  //你的FTP站点名称
    $content2=stristr($directory,"/var/ftp");
    $content=$content3.$content2;
    echo "$content
";
    $i++;
  }   }

 if($i==0)
                    {   $color="FF3399";
   echo  "真是太神奇了,居然没有找到,呵呵~~,再试试!
";}
 else echo "恭喜,您要查找的东东找到了,赶快下载吧!.
";
    ?>

需要说明的几点:

1:产生背景:由于我们站长让我做一个类似北大天网那样的FTP搜索的东西,以方便校内想下载软件而又一时半会儿找不到相映目录的网友,所以它就产生了。当然它的搜索能力远不如天网强大,而且它也不是真正意义上的搜索引擎,但是却可以完成FTP目录下遍历的功能(如果你的目录不是太深-----它可以处理到18层目录)

2:以上程序必须放在你所要搜索的目录下面才可以用----原因是权限问题

3:存在的问题

 a:如果处理的文件目录太深(比如30层,虽然很少人这么做,但是它处理起来就会跳过太深的目录----原因是服务器关于命令运行时间的限制)-------偶已经想到了解决的方法(理论阶段,由于现在忙于应付CPA的考试,所以没有实施)------即模仿flashget等的多线程下载的方式。得到当前目录下的文件,文件夹同时生成数组对每个文件夹逐个进行搜索或者同时进行搜索

b:有时候会出现这种情况,即:父目录的名字和子目录的相同,这时候会跳过这个父目录-----这个问题容易解决但是会加大处理的任务,加之最近没有时间改进,所以一直放置着^-^

浅妄薄见,望与斟酌

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How does Go language implement the addition, deletion, modification and query operations of the database? How does Go language implement the addition, deletion, modification and query operations of the database? Mar 27, 2024 pm 09:39 PM

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

How does Hibernate implement polymorphic mapping? How does Hibernate implement polymorphic mapping? Apr 17, 2024 pm 12:09 PM

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

How to read the catalog when reading on WeChat How to view the catalog How to read the catalog when reading on WeChat How to view the catalog Mar 30, 2024 pm 05:56 PM

The mobile version of WeChat Reading App is a very good reading software. This software provides a lot of books. You can read them anytime, anywhere with just one click to search and read them online. All of them are officially authorized and different types of books are neatly arranged. Sort and enjoy a comfortable and relaxing reading atmosphere. Switch the reading modes of different scenarios, update the latest book chapters continuously every day, support online login from multiple devices, and batch download to the bookshelf. You can read it with or without the Internet, so that everyone can discover more knowledge from it. Now the editor details it online Promote the method of viewing the catalog for WeChat reading partners. 1. Open the book you want to view the catalog and click in the middle of the book. 2. Click the three lines icon in the lower left corner. 3. In the pop-up window, view the book catalog

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

An in-depth analysis of how HTML reads the database An in-depth analysis of how HTML reads the database Apr 09, 2024 pm 12:36 PM

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

Full analysis of Go language file renaming operation Full analysis of Go language file renaming operation Apr 08, 2024 pm 03:30 PM

The os.Rename function is used in Go language to rename files. The syntax is: funcRename(oldpath,newpathstring)error. This function renames the file specified by oldpath to the file specified by newpath. Examples include simple renaming, moving files to different directories, and ignoring error handling. The Rename function performs an atomic operation and may only update directory entries when the two files are in the same directory. Renames may fail across volumes or while a file is in use.

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

See all articles