当前位置: 编程技术>php
本页文章导读:
▪用PHP生成html分页列表的代码
<?php $db = mysql_connect("127.0.0.1","root","*******") or die("cant't connect host"); $re = mysql_select_db("t",$db)or die ("can't open database"); $sql = "Select * FROM news"; $res = mysql_query($sql); $row = mysql_num_rows.........
▪用PHP生成静态HTML速度快类库
代码如下: ob_start();#开启服务器缓存 include_once 'Index.php'; $ctx=ob_get_contents();# 获取缓存 ob_end_clean();#清空缓存 $fh=fopen("index.html","w+"); fwrite($fh,$ctx);# 写入html,生成html fclose($fh); 1、Flush:刷新缓.........
▪PHP实现采集程序原理和简单示例代码
<entry SKIPIFREF="YES"> <title>I Believe In Love</title> <author> 蓝牙音乐网 - 8391.com</author> <copyright> 蓝牙音乐网 - 8391.com</copyright> <ref href="http://218.78.213.183.........
[1]用PHP生成html分页列表的代码
来源: 互联网 发布时间: 2013-11-30
<?php
$db = mysql_connect("127.0.0.1","root","*******") or die("cant't connect host");
$re = mysql_select_db("t",$db)or die ("can't open database");
$sql = "Select * FROM news";
$res = mysql_query($sql);
$row = mysql_num_rows($res);
$pagesize = 2; //分页
行数
if($row<$pagesize) $pages = 1;
if($row%$pagesize){
$pages = intval($row/$pagesize)+1;
}else{
$pages = intval($row/$pagesize);
}
for($i=1;$i<=$pages;$i++){
$page_turn="";
if($i==1){
$indexpath="index.html";
$page_turn.="First | Front";
}else{
$indexpath="index_".$i.".html";
$page_turn.="<a href='/blog_article/index.html'>First</a> | <a href='/blog_article/index_/index.html".($i-1).".html'>Front</a>";
}
if($i==$pages){
$page_turn.=' | Behind | Last';
}else{
$page_turn.=" | <a href='/blog_article/index_/index.html".($i+1).".html'>Behind</a> | <a href='/blog_article/index_/index.html".$pages.".html'>Last</a>";
}
$search = $sql." LIMIT ".($i-1)*$pagesize .", $pagesize";
$result = mysql_query($search);
$rows = mysql_num_rows($result);
$j=1;
$list="";
while($j<=$rows){
$doc = mysql_fetch_array($result);
$id = $doc['0'];
$title = $doc['1'];
$path = $doc['3'];
$list .="<a href='".$id.".html'>".$title."</a><br>";
$j+=1;
}
$list.="<br><br>".$page_turn;
$fp = fopen("html/list.html","r");
$str = fread($fp,filesize("html/list.html"));
$str = str_replace("{content}",$list,$str);
fclose($fp);
$handle = fopen($path."/".$indexpath,"w");
fwrite($handle,$str);
fclose($handle);
}
copy($path."/index.html",$path."/index_1.html");
?>
$db = mysql_connect("127.0.0.1","root","*******") or die("cant't connect host");
$re = mysql_select_db("t",$db)or die ("can't open database");
$sql = "Select * FROM news";
$res = mysql_query($sql);
$row = mysql_num_rows($res);
$pagesize = 2; //分页
行数
if($row<$pagesize) $pages = 1;
if($row%$pagesize){
$pages = intval($row/$pagesize)+1;
}else{
$pages = intval($row/$pagesize);
}
for($i=1;$i<=$pages;$i++){
$page_turn="";
if($i==1){
$indexpath="index.html";
$page_turn.="First | Front";
}else{
$indexpath="index_".$i.".html";
$page_turn.="<a href='/blog_article/index.html'>First</a> | <a href='/blog_article/index_/index.html".($i-1).".html'>Front</a>";
}
if($i==$pages){
$page_turn.=' | Behind | Last';
}else{
$page_turn.=" | <a href='/blog_article/index_/index.html".($i+1).".html'>Behind</a> | <a href='/blog_article/index_/index.html".$pages.".html'>Last</a>";
}
$search = $sql." LIMIT ".($i-1)*$pagesize .", $pagesize";
$result = mysql_query($search);
$rows = mysql_num_rows($result);
$j=1;
$list="";
while($j<=$rows){
$doc = mysql_fetch_array($result);
$id = $doc['0'];
$title = $doc['1'];
$path = $doc['3'];
$list .="<a href='".$id.".html'>".$title."</a><br>";
$j+=1;
}
$list.="<br><br>".$page_turn;
$fp = fopen("html/list.html","r");
$str = fread($fp,filesize("html/list.html"));
$str = str_replace("{content}",$list,$str);
fclose($fp);
$handle = fopen($path."/".$indexpath,"w");
fwrite($handle,$str);
fclose($handle);
}
copy($path."/index.html",$path."/index_1.html");
?>
[2]用PHP生成静态HTML速度快类库
来源: 互联网 发布时间: 2013-11-30
代码如下:
ob_start();#开启服务器缓存
include_once 'Index.php';
$ctx=ob_get_contents();# 获取缓存
ob_end_clean();#清空缓存
$fh=fopen("index.html","w+");
fwrite($fh,$ctx);# 写入html,生成html
fclose($fh);
1、Flush:刷新缓冲区的内容,输出。
函数格式:flush()
说明:这个函数经常使用,效率很高。
2、ob_start :打开输出缓冲区
函数格式:void ob_start(void)
说明:当缓冲区激活时,所有来自PHP程序的非文件头信息均不会发送,而是保存在内部缓冲区。为了输出缓冲区的内容,可以使用ob_end_flush()或flush()输出缓冲区的内容。
3 、ob_get_contents :返回内部缓冲区的内容。
使用
函数格式:string ob_get_contents(void)
说明:这个函数会返回当前缓冲区中的内容,如果输出缓冲区没有激活,则返回 FALSE 。
4、 ob_get_length:返回内部缓冲区的长度。
使用方法:int ob_get_length(void)
说明:这个函数会返回当前缓冲区中的长度;和ob_get_contents一样,如果输出缓冲区没有激活。则返回 FALSE。
5、ob_end_flush :发送内部缓冲区的内容到浏览器,并且关闭输出缓冲区。
使用方法:void ob_end_flush(void)
说明:这个函数发送输出缓冲区的内容(如果有的话)。
6、ob_end_clean:删除内部缓冲区的内容,并且关闭内部缓冲区
使用方法:void ob_end_clean(void)
说明:这个函数不会输出内部缓冲区的内容而是把它删除!
7、ob_implicit_flush:打开或关闭绝对刷新
使用方法:void ob_implicit_flush ([int flag])
代码如下:
<?php
///////////////////////////////////////////////////////////////////////////////
//
// 张树林 - 慧佳工作室
//
// Module Name: woods-bhtml.php
// Abstract: 生成静态HTML处理程序尾底
// Version: 2.0
// Date 1006-11-25
// Author: woods·zhang
// Website: http://www.hoojar.com/
// Email: hoojar@53.com
// MSN: hoojar@hotmail.com
// Copyright 1001-1006, Hoojar studio All Rights Reserved
//
// 版权 1001-1006,慧佳工作室所有版权保护
//The software for free software, allowing use, copy,
//modify and distribute the software and files. Any
//use of this software must place a copy of all the
//above copyright notice. By the software Huijia studio
//maintenance, if you have any queries please contact us.
//Thank you.
//
//此软件为自由软件,允许使用、拷贝、修改、分发本软件及其文档。
//任何使用此软件的地方都得出现以上版权通告所有副本。此软件由
//慧佳工作室维护,如果您有什么疑问请与我们联系。谢谢使用。
//
///////////////////////////////////////////////////////////////////////////////
//此文件只能加载在程序的最尾
/*________________生成HTML文件______________________beign________________________________*/
if ($make_html)
{
$buffer = ob_get_flush();
if ($go_html)//是否直接转到HTML文件显示还是PHP读得内容输出(0:php读内容输出1:直接转)
{
/*__________处理因生成了HTML文件而产生的种径问题____________________begin_______________*/
$search = array(
"/(src=/blog_article/_action=_href=_ajaxRead/index.html()\"/ie",
"/\.\.\./e",
"/\.\/\./e",
"/\.\.\/http:\/\//ies",
"/\.\.\/#/",
"/\'\.\'/e",
"/\.\.\/javascript:/ies");
$replace = array(
"'\\1\"../'",
"'..'",
"'.'",
"'http://'",
"#",
"'\'..\''",
"'javascript:'");
$buffer = preg_replace($search, $replace, $buffer);
/*__________处理因生成了HTML文件而产生的种径问题____________________end_______________*/
}
$fp = fopen(HTML_FILE, "w");
if ($fp)
{
fwrite($fp, $buffer);
fclose($fp);
}
}
/*________________生成HTML文件______________________beign________________________________*/
?>
<?php
///////////////////////////////////////////////////////////////////////////////
//
// 张树林 - 慧佳工作室
//
// Module Name: woods-thtml.php
// Abstract: 生成静态HTML处理程序头
// Version: 2.0
// Date 1006-11-25
// Author: woods·zhang
// Website: http://www.hoojar.com/
// Email: hoojar@53.com
// MSN: hoojar@hotmail.com
// Copyright 1001-1006, Hoojar studio All Rights Reserved
//
// 版权 1001-1006,慧佳工作室所有版权保护
//The software for free software, allowing use, copy,
//modify and distribute the software and files. Any
//use of this software must place a copy of all the
//above copyright notice. By the software Huijia studio
//maintenance, if you have any queries please contact us.
//Thank you.
//
//此软件为自由软件,允许使用、拷贝、修改、分发本软件及其文档。
//任何使用此软件的地方都得出现以上版权通告所有副本。此软件由
//慧佳工作室维护,如果您有什么疑问请与我们联系。谢谢使用。
//
///////////////////////////////////////////////////////////////////////////////
//此文件只能加载在程序的开头
ob_start();
/*___________判断是否已生成了HTML文件,若生成了则跳转到HTML页面___________begin__________*/
$qstring = isset($_SERVER["QUERY_STRING"]) ? $_SERVER["QUERY_STRING"] : "";
if ($qstring)//程序加了GET请求的处理
{
$qstring = str_replace("=", "", $qstring);
define("HTML_FILE", "./h/{$efilename}-{$qstring}.html");
}
else
{
define("HTML_FILE", "./h/{$efilename}.html");
}
if (file_exists(HTML_FILE))
{
$lcft = filemtime(HTML_FILE);//last create file time
if (($lcft + 3600) > time())//判断上次生成HTML文件是否以过去1时间,若没有才直接输出文件内容
{
if ($show_html)//是否以HTML静态页面展示(0不以HTML展显1以html展显)
{
if ($go_html)//是否直接转到HTML文件显示还是PHP读得内容输出(0:php读内容输出1:直接转)
{
header("Location: " . HTML_FILE);//直接转
}
else
{
echo(file_get_contents(HTML_FILE));//读出展显
}
exit(0);
}
}
}
/*___________判断是否已生成了HTML文件,若生成了则跳转到HTML页面___________end__________*/
?>
<?php
///////////////////////////////////////////////////////////////////////////////
//
// 张树林 - 慧佳工作室
//
// Module Name: index.php
// Abstract: 首页信息
// Version: 1.0
// Date 2006-11-7
// Author: woods·zhang
// Website: http://www.hoojar.com/
// Cemail: hoojar@163.com
// MSN: hoojar@hotmail.com
// Copyright 2001-2006, Hoojar studio All Rights Reserved
//
// 版权 2001-2006,慧佳工作室所有版权保护
//The software for free software, allowing use, copy,
//modify and distribute the software and files. Any
//use of this software must place a copy of all the
//above copyright notice. By the software Huijia studio
//maintenance, if you have any queries please contact us.
//Thank you.
//
//此软件为自由软件,允许使用、拷贝、修改、分发本软件及其文档。
//任何使用此软件的地方都得出现以上版权通告所有副本。此软件由
//慧佳工作室维护,如果您有什么疑问请与我们联系。谢谢使用。
//
///////////////////////////////////////////////////////////////////////////////
require("woods-thtml.php");//生成HTML处理头
//if (count($_GET) < 1 && count($_POST) < 1){require("woods-thtml.php");}//生成HTML处理头
require("{$exec_file}");//注册语言定义文件
foreach ($lang as $key => $value)
{
$atpl[strtoupper($key) ."_LANG"] = $value;
}
/*____________________________________列表常识向上走的项__________________end_____________________*/
include("woods-templates.php");
$tpl = new WoodsTpl("./templates/");
$tpl->require_tpl("header.html");
$tpl->set_file();
$tpl->block("EBCORP", $scorp);
$tpl->block("NEWS", $news);
$tpl->block("PRODUCT", $product);
$tpl->block("EBPNAME_MSG", $spname);
$tpl->block("LORE", $lore);
$tpl->require_tpl("footer.html");
$tpl->parse($atpl, true);
$tpl = NULL;
/*________________模板操作_________________________end___________________________________*/
require("woods-bhtml.php");//生成HTML处理尾
?>
[3]PHP实现采集程序原理和简单示例代码
来源: 互联网 发布时间: 2013-11-30
<entry SKIPIFREF="YES">
<title>I Believe In Love</title>
<author> 蓝牙音乐网 - 8391.com</author>
<copyright> 蓝牙音乐网 - 8391.com</copyright>
<ref href="http://218.78.213.183:880/daolianmtvfuc__________________kkkkkkkkkk//shela_believe.wmv"/>
<param name="Artist" value="榭拉"/>
<param name="Album" value=" 蓝牙音乐网 - 8391.com"/>
<param name="Title" value="I Believe In Love"/>
</ENTRY>
</ASX>
确认有用数据:
歌曲名称:I Believe In Love
歌手:榭拉
歌曲路径:http://218.78.213.183:880/daolianmtvfuc__________________kkkkkkkkkk//shela_believe.wmv
我们在小偷程序中只要得到以上数据就可以了
3、PHP代码编写
PHP:<?
/********
说明,为程序简单化,整个程序没有使用正则表达式
(我自己对这个方面也很臭,呵呵,高手别骂)
****/
//定义一个函数,对字符简单的过滤
function str($txt){
$txt= str_replace("'","'",$txt);
$txt= str_replace("\"","\\"",$txt);
return $txt;
}
//初始化程序
$magic_quotes_gpc = get_magic_quotes_gpc();
$register_globals = @ini_get('register_globals');
if(!$register_globals ││ !$magic_quotes_gpc) {
@extract(daddslashes($HTTP_POST_VARS));
@extract(daddslashes($HTTP_GET_VARS));
if(!$register_globals) {
foreach($HTTP_POST_FILES as $key => $val) {
$$key = $val['tmp_name'];
${$key.'_name'} = $val['name'];
${$key.'_size'} = $val['size'];
${$key.'_type'} = $val['type'];
}
}
}
if (function_exists('set_time_limit') == 1 && @ini_get('safe_mode') == 0) {
@set_time_limit(1000);
}
//end
//为防止日后对方修改地址,把地址前部相同的提取出来
$host="http://218.78.213.183:880/daolianmtvfuc__________________kkkkkkkkkk/";
if(!$action){
echo "<a href=/index.html"t.php?action=start\">click here to start</a>";
die();
}else{
$end=3488;//结束ID
if(!$id││$id<1)$id=1;//默认ID编号
$url="http://mtv.8391.com/Yxwen.asp?id=".$id;
$str=@file_get_contents($url);//读取页面代码
if($str){
//利用关键字符,分割代码
$a1=explode("value=\"",$str);//value=\"来分割字符
//取歌手名称
$n1=explode("\"",$a1[1]);
$ges=str(trim($n1[0]));
//取歌曲名称
$g1=explode("\"",$a1[3]);
$name=str(trim($g1[0]));
//取歌曲地址
$h1=explode("href=/index.html"",$str);
$h2=explode("\"",$h1[1]);
$mtvurl= str(str_replace($host,"",trim($h2)));
//添加数据库
/********
可根据自己的程序,适当的添加
********/
}
$id++;
if($id<=$end){ echo "<a href=/blog_article/t/id/$id/gt;cleck here /lt;/a/gt;.html";
echo "<meta http-equiv=\"refresh\" content=\"0;url=t.php?id=$id\">";}
elsedie("program runing over");
}
?>
<title>I Believe In Love</title>
<author> 蓝牙音乐网 - 8391.com</author>
<copyright> 蓝牙音乐网 - 8391.com</copyright>
<ref href="http://218.78.213.183:880/daolianmtvfuc__________________kkkkkkkkkk//shela_believe.wmv"/>
<param name="Artist" value="榭拉"/>
<param name="Album" value=" 蓝牙音乐网 - 8391.com"/>
<param name="Title" value="I Believe In Love"/>
</ENTRY>
</ASX>
确认有用数据:
歌曲名称:I Believe In Love
歌手:榭拉
歌曲路径:http://218.78.213.183:880/daolianmtvfuc__________________kkkkkkkkkk//shela_believe.wmv
我们在小偷程序中只要得到以上数据就可以了
3、PHP代码编写
PHP:<?
/********
说明,为程序简单化,整个程序没有使用正则表达式
(我自己对这个方面也很臭,呵呵,高手别骂)
****/
//定义一个函数,对字符简单的过滤
function str($txt){
$txt= str_replace("'","'",$txt);
$txt= str_replace("\"","\\"",$txt);
return $txt;
}
//初始化程序
$magic_quotes_gpc = get_magic_quotes_gpc();
$register_globals = @ini_get('register_globals');
if(!$register_globals ││ !$magic_quotes_gpc) {
@extract(daddslashes($HTTP_POST_VARS));
@extract(daddslashes($HTTP_GET_VARS));
if(!$register_globals) {
foreach($HTTP_POST_FILES as $key => $val) {
$$key = $val['tmp_name'];
${$key.'_name'} = $val['name'];
${$key.'_size'} = $val['size'];
${$key.'_type'} = $val['type'];
}
}
}
if (function_exists('set_time_limit') == 1 && @ini_get('safe_mode') == 0) {
@set_time_limit(1000);
}
//end
//为防止日后对方修改地址,把地址前部相同的提取出来
$host="http://218.78.213.183:880/daolianmtvfuc__________________kkkkkkkkkk/";
if(!$action){
echo "<a href=/index.html"t.php?action=start\">click here to start</a>";
die();
}else{
$end=3488;//结束ID
if(!$id││$id<1)$id=1;//默认ID编号
$url="http://mtv.8391.com/Yxwen.asp?id=".$id;
$str=@file_get_contents($url);//读取页面代码
if($str){
//利用关键字符,分割代码
$a1=explode("value=\"",$str);//value=\"来分割字符
//取歌手名称
$n1=explode("\"",$a1[1]);
$ges=str(trim($n1[0]));
//取歌曲名称
$g1=explode("\"",$a1[3]);
$name=str(trim($g1[0]));
//取歌曲地址
$h1=explode("href=/index.html"",$str);
$h2=explode("\"",$h1[1]);
$mtvurl= str(str_replace($host,"",trim($h2)));
//添加数据库
/********
可根据自己的程序,适当的添加
********/
}
$id++;
if($id<=$end){ echo "<a href=/blog_article/t/id/$id/gt;cleck here /lt;/a/gt;.html";
echo "<meta http-equiv=\"refresh\" content=\"0;url=t.php?id=$id\">";}
elsedie("program runing over");
}
?>
最新技术文章: