PHP 長文章分頁函數(shù) 帶使用方法,不會分割段落,翻頁在底部
更新時間:2009年10月22日 13:17:32 作者:
PHP 長文章分頁函數(shù) 帶使用方法,不會分割段落,翻頁在底部 ,需要的朋友可以參考下。
復制代碼 代碼如下:
<?php function ff_page($content,$page)
{
global $expert_id;
$PageLength = 2000; //每頁字數(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>";
}
}
}?>
使用
復制代碼 代碼如下:
<?php
$content1=''測試文字,盡量長一些,m.fzitv.net";
$current=$_REQUEST['page_t'];
$result=ff_page($content1,$current);
echo $result;
?>
相關文章
淺析PHP中的字符串編碼轉(zhuǎn)換(自動識別原編碼)
本篇文章是對PHP中字符串編碼轉(zhuǎn)換的實現(xiàn)代碼進行了詳細的分析介紹,需要的朋友參考下2013-07-07
PHP基于PDO調(diào)用sqlserver存儲過程通用方法【基于Yii框架】
這篇文章主要介紹了PHP基于PDO調(diào)用sqlserver存儲過程通用方法,結(jié)合實例形式分析了基于Yii框架采用pdo調(diào)用sqlserver存儲過程的相關操作步驟與實現(xiàn)技巧,需要的朋友可以參考下2017-10-10
PHP實現(xiàn)自動識別原編碼并對字符串進行編碼轉(zhuǎn)換的方法
這篇文章主要介紹了PHP實現(xiàn)自動識別原編碼并對字符串進行編碼轉(zhuǎn)換的方法,涉及php針對編碼的識別、轉(zhuǎn)換及數(shù)組的遍歷等相關操作技巧,需要的朋友可以參考下2016-07-07
PHP中使用json數(shù)據(jù)格式定義字面量對象的方法
這篇文章主要介紹了PHP中使用json數(shù)據(jù)格式定義字面量對象的方法,這是一種變通方法,使用json還可以在類中生成數(shù)組哦,需要的朋友可以參考下
2014-08-08 
