实例介绍
【实例简介】
PhpDig是一个采用PHP开发的Web爬虫和搜索引擎。通过对动态和静态页面进行索引建立一个词汇表。当搜索查询时,它将按一定的排序规则显示包含关 键字的搜索结果页面。PhpDig包含一个模板系统并能够索引PDF,Word,Excel,和PowerPoint文档。PHPdig适用于专业化更 强、层次更深的个性化搜索引擎,利用它打造针对某一领域的垂直搜索引擎是最好的选择。
【实例截图】
【核心代码】
4744300845143755741.rar
└── phpdig-1.8.8
├── admin
│ ├── cleanup_common.php
│ ├── cleanup_dashes.php
│ ├── cleanup_engine.php
│ ├── cleanup_keywords.php
│ ├── debug_functions.php
│ ├── deny.gif
│ ├── details.gif
│ ├── files.php
│ ├── fill.gif
│ ├── index.php
│ ├── install.php
│ ├── limit_update.php
│ ├── logout.php
│ ├── no.gif
│ ├── README.txt
│ ├── robot_functions.php
│ ├── spider.php
│ ├── statistics.php
│ ├── stop_spider.php
│ ├── temp
│ │ ├── cronfile.txt
│ │ └── keepalive.txt
│ ├── update_frame.php
│ ├── update.php
│ └── yes.gif
├── clickstats.php
├── custom_rss.php
├── custom_search.php
├── documentation
│ ├── phpdig-api-en.html
│ ├── phpdig-api-en.txt
│ ├── phpdig-doc-en.html
│ ├── phpdig-doc-en.txt
│ └── README.txt
├── includes
│ ├── common_words.txt
│ ├── config.php
│ ├── _connect.php
│ ├── de_en_fr_common_words.txt
│ ├── it_common_words.txt
│ ├── README.txt
│ └── style.css
├── information
│ ├── CHANGELOG
│ ├── COPYING
│ ├── CREDITS
│ ├── FILELIST
│ ├── LICENSE
│ └── README
├── libs
│ ├── authold.php
│ ├── auth.php
│ ├── function_phpdig_form.php
│ ├── htmlheader.php
│ ├── htmlmetas.php
│ ├── mysql_functions.php
│ ├── phpdig_functions.php
│ └── search_function.php
├── list.php
├── locales
│ ├── ca-language.php
│ ├── cs-language.php
│ ├── da-language.php
│ ├── de-language-old.php
│ ├── de-language.php
│ ├── en-language.php
│ ├── es-language.php
│ ├── fr-language.php
│ ├── gr-language.php
│ ├── it-language-old.php
│ ├── it-language.php
│ ├── nl-language.php
│ ├── no-language.php
│ ├── pt-language.php
│ └── README.txt
├── phpdig_logo_2.gif
├── phpdig_logo_2.png
├── phpdig_powered_2.gif
├── phpdig_powered_2.png
├── rss
│ └── keepalive.txt
├── search.php
├── sql
│ ├── init_db.sql
│ ├── README.txt
│ ├── update_db.sql
│ ├── update_db_to_1_4_4.sql
│ ├── update_db_to_1_4_5.sql
│ ├── update_db_to_1_6_1.sql
│ ├── update_db_to_1_6.sql
│ ├── update_db_to_1_8_1.sql
│ ├── update_db_to_1_8_2.sql
│ ├── update_db_to_1_8_4.sql
│ ├── update_db_to_1_8_5.sql
│ └── update_db_to_1_8_6.sql
├── templates
│ ├── black.html
│ ├── bluegrey.html
│ ├── corporate.html
│ ├── gaagle.html
│ ├── green.html
│ ├── grey.html
│ ├── lightgreen.html
│ ├── linear.html
│ ├── newspaper.html
│ ├── phpdig.html
│ ├── simple.html
│ ├── terminal.html
│ └── yellow.html
├── text_content
│ └── keepalive.txt
└── tpl_img
├── aq_background.gif
├── bar_left.gif
├── bar_middle.gif
├── barre-verte-bas-courte.gif
├── barre-verte-bas.gif
├── barre-verte-courte.gif
├── barre-verte.gif
├── bar_right.gif
├── coininfd.gif
├── coininfg.gif
├── coinsupd.gif
├── coinsupg.gif
├── cprgo.gif
├── cprgradient.jpg
├── cprlogo.jpg
├── cprtitle.jpg
├── d.gif
├── fond.gif
├── g.gif
├── horzfeuil.gif
├── inf.gif
├── left.gif
├── orbar-center.gif
├── orbar-left.gif
├── orbar-right.gif
├── redbar_left.gif
├── redbar_middle.gif
├── redbar_right.gif
├── right.gif
├── space15_15.gif
├── sup.gif
├── vertfeuil.gif
└── weight.gif
13 directories, 134 files
PhpDig是一个采用PHP开发的Web爬虫和搜索引擎。通过对动态和静态页面进行索引建立一个词汇表。当搜索查询时,它将按一定的排序规则显示包含关 键字的搜索结果页面。PhpDig包含一个模板系统并能够索引PDF,Word,Excel,和PowerPoint文档。PHPdig适用于专业化更 强、层次更深的个性化搜索引擎,利用它打造针对某一领域的垂直搜索引擎是最好的选择。
【实例截图】
【核心代码】
4744300845143755741.rar
└── phpdig-1.8.8
├── admin
│ ├── cleanup_common.php
│ ├── cleanup_dashes.php
│ ├── cleanup_engine.php
│ ├── cleanup_keywords.php
│ ├── debug_functions.php
│ ├── deny.gif
│ ├── details.gif
│ ├── files.php
│ ├── fill.gif
│ ├── index.php
│ ├── install.php
│ ├── limit_update.php
│ ├── logout.php
│ ├── no.gif
│ ├── README.txt
│ ├── robot_functions.php
│ ├── spider.php
│ ├── statistics.php
│ ├── stop_spider.php
│ ├── temp
│ │ ├── cronfile.txt
│ │ └── keepalive.txt
│ ├── update_frame.php
│ ├── update.php
│ └── yes.gif
├── clickstats.php
├── custom_rss.php
├── custom_search.php
├── documentation
│ ├── phpdig-api-en.html
│ ├── phpdig-api-en.txt
│ ├── phpdig-doc-en.html
│ ├── phpdig-doc-en.txt
│ └── README.txt
├── includes
│ ├── common_words.txt
│ ├── config.php
│ ├── _connect.php
│ ├── de_en_fr_common_words.txt
│ ├── it_common_words.txt
│ ├── README.txt
│ └── style.css
├── information
│ ├── CHANGELOG
│ ├── COPYING
│ ├── CREDITS
│ ├── FILELIST
│ ├── LICENSE
│ └── README
├── libs
│ ├── authold.php
│ ├── auth.php
│ ├── function_phpdig_form.php
│ ├── htmlheader.php
│ ├── htmlmetas.php
│ ├── mysql_functions.php
│ ├── phpdig_functions.php
│ └── search_function.php
├── list.php
├── locales
│ ├── ca-language.php
│ ├── cs-language.php
│ ├── da-language.php
│ ├── de-language-old.php
│ ├── de-language.php
│ ├── en-language.php
│ ├── es-language.php
│ ├── fr-language.php
│ ├── gr-language.php
│ ├── it-language-old.php
│ ├── it-language.php
│ ├── nl-language.php
│ ├── no-language.php
│ ├── pt-language.php
│ └── README.txt
├── phpdig_logo_2.gif
├── phpdig_logo_2.png
├── phpdig_powered_2.gif
├── phpdig_powered_2.png
├── rss
│ └── keepalive.txt
├── search.php
├── sql
│ ├── init_db.sql
│ ├── README.txt
│ ├── update_db.sql
│ ├── update_db_to_1_4_4.sql
│ ├── update_db_to_1_4_5.sql
│ ├── update_db_to_1_6_1.sql
│ ├── update_db_to_1_6.sql
│ ├── update_db_to_1_8_1.sql
│ ├── update_db_to_1_8_2.sql
│ ├── update_db_to_1_8_4.sql
│ ├── update_db_to_1_8_5.sql
│ └── update_db_to_1_8_6.sql
├── templates
│ ├── black.html
│ ├── bluegrey.html
│ ├── corporate.html
│ ├── gaagle.html
│ ├── green.html
│ ├── grey.html
│ ├── lightgreen.html
│ ├── linear.html
│ ├── newspaper.html
│ ├── phpdig.html
│ ├── simple.html
│ ├── terminal.html
│ └── yellow.html
├── text_content
│ └── keepalive.txt
└── tpl_img
├── aq_background.gif
├── bar_left.gif
├── bar_middle.gif
├── barre-verte-bas-courte.gif
├── barre-verte-bas.gif
├── barre-verte-courte.gif
├── barre-verte.gif
├── bar_right.gif
├── coininfd.gif
├── coininfg.gif
├── coinsupd.gif
├── coinsupg.gif
├── cprgo.gif
├── cprgradient.jpg
├── cprlogo.jpg
├── cprtitle.jpg
├── d.gif
├── fond.gif
├── g.gif
├── horzfeuil.gif
├── inf.gif
├── left.gif
├── orbar-center.gif
├── orbar-left.gif
├── orbar-right.gif
├── redbar_left.gif
├── redbar_middle.gif
├── redbar_right.gif
├── right.gif
├── space15_15.gif
├── sup.gif
├── vertfeuil.gif
└── weight.gif
13 directories, 134 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论