PHP 長文章分頁函數(shù) 帶使用方法,不會分割段落,翻頁在底部
更新時間:2009年10月22日 13:17:32 作者:
PHP 長文章分頁函數(shù) 帶使用方法,不會分割段落,翻頁在底部 ,需要的朋友可以參考下。
復(fù)制代碼 代碼如下:
<?php function ff_page($content,$page)
{
global $expert_id;
$PageLength = 2000; //每頁字?jǐn)?shù)
$CLength = strlen($content);
$PageCount = floor(($CLength / $PageLength)) + 1; //計算頁數(shù)
$PageArray=array();
$Seperator = array("\n","\r","。","!","?",";",",","”","'"); //分隔符號
//echo "頁數(shù):".$PageCount."<br>";
//echo "長度:".$CLength."<br><br><br>";
//strpos() 函數(shù)返回字符串在另一個字符串中第一次出現(xiàn)的位置
if($CLength<$PageLength)
{
echo $content;
}else{
$PageArray[0]=0;
$Pos = 0;
$i=0;
//第一頁
for($j=0;$j<sizeof($Seperator);$j++)
{
//echo $Seperator[$j];
$Pos=strpos($content,$Seperator[$j],$PageArray[$i]+1900);
while($Pos > 0 && $Pos < ($i+1)*$PageLength && $Pos > $i*$PageLength )
{
$PageArray[$i] = $Pos ;
$Pos = strpos($Pos+$PageLength,$content,$Seperator[$j]) ;
}
if($PageArray[$i]>0)
{
$j = $j + sizeof($Seperator) + 1;
}
}
//---
for($i=1;$i<$PageCount-1;$i++){
for($j=0;$j<sizeof($Seperator);$j++)
{
//echo $Seperator[$j];
$Pos=strpos($content,$Seperator[$j],$PageArray[$i-1]+1900);
while($Pos > 0 && $Pos < ($i+1)*$PageLength && $Pos > $i*$PageLength )
{
$PageArray[$i] = $Pos ;
$Pos = strpos($Pos+$PageLength,$content,$Seperator[$j]) ;
}
if($PageArray[$i]>0)
{
$j = $j + sizeof($Seperator) + 1;
}
}
}
//--最后一頁
$PageArray[$PageCount-1]=$CLength;
//$page=2;
if($page==1)
{
$output=substr($content,0,$PageArray[$page-1]+2);
}
if($page>1 && $page<=$PageCount)
{
$output=substr($content,$PageArray[$page-2]+2,$PageArray[$page-1]-$PageArray[$page-2]);
$output=" (上接第".($page-1)."頁)\n".$output;
}
echo str_replace("\n","<br> ",$output);
//if($page==$PageCount)
//return $output=substr($content,$PageArray[$page-2]+2,$PageArray[$page-1]-$PageArray[$page-2]);
if($PageCount>1)
{
echo "<br><br><br><center>";
echo "<font color='ff0000'>".$page."</font>/".$PageCount." 頁 ";
if($page>1)
echo "<a href=$PHP_SELF?expert_id=$expert_id&page_t=".($page-1).">上一頁</a> ";
else
echo "上一頁 ";
for($i=1;$i<=$PageCount;$i++)
{
echo "<a href=$PHP_SELF?expert_id=$expert_id&page_t=".$i.">[".$i."]</a> ";
}
if($page<$PageCount)
echo " <a href=$PHP_SELF?expert_id=$expert_id&page_t=".($page+1).">下一頁</a> ";
else
echo " 下一頁 ";
echo "</center>";
}
}
}?>
使用
復(fù)制代碼 代碼如下:
<?php
$content1=''測試文字,盡量長一些,chabaoo.cn";
$current=$_REQUEST['page_t'];
$result=ff_page($content1,$current);
echo $result;
?>
相關(guān)文章
PHP Squid中可緩存的動態(tài)網(wǎng)頁設(shè)計
有時我們需要控制主頁之類的網(wǎng)頁過期時間.但我們比如使用的是Chinacache的CDN,那要怎么樣設(shè)計才能讓他緩存我的內(nèi)容.2008-09-09php中curl、fsocket、file_get_content三個函數(shù)的使用比較
最近做一個網(wǎng)頁小偷程序的時候才發(fā)現(xiàn)file_get_content已經(jīng)完全不能滿足需求了。我覺得,在讀取遠(yuǎn)程內(nèi)容的時候,file_get_content除了使用比curl便捷以外,其他都沒有curl好2014-05-05PHP中將字符串轉(zhuǎn)化為整數(shù)(int) intval() printf() 性能測試
早在Sql注入橫行的前幾年,字符串轉(zhuǎn)化為整數(shù)就已經(jīng)被列為每個web程序必備的操作了。web程序?qū)et或post來的id、整數(shù)等值強(qiáng)制經(jīng)過轉(zhuǎn)化函數(shù)轉(zhuǎn)化為整數(shù),過濾掉危險字符,盡可能降低系統(tǒng)本身被Sql注入的可能性2012-03-03php5.2以下版本無json_decode函數(shù)的解決方法
這篇文章主要介紹了php5.2以下版本無json_decode函數(shù)的解決方法,需要的朋友可以參考下2014-05-05