php で txt ファイルのページングを実装する方法: 1. PHP サンプル ファイルを作成します; 2. 「関数 m_substr($str, $start, $length){...}」を通じて中国語の文字を処理し、ページング効果。
#この記事の動作環境: Windows 7 システム、PHP バージョン 7.4、Dell G3 コンピューター。
php で txt ファイルのページングを実現するにはどうすればよいですか?
php ではテキスト ファイルのページング機能を簡単に実現できます
Paging "; } if(ord(substr($str, $i, 1))>0xa0){ $tmp_str .= substr($str, $i, 2); $i++; }else{ $tmp_str .= substr($str, $i, 1); } } return $tmp_str; } // 传参处理 if(isset($_GET['page'])){ $page = $_GET['page']; }else{ $page = 1; } $counter = file_get_contents("example.txt"); $length = strlen($counter); $page_count = ceil($length/400); $pre_str = m_substr($counter, 0, ($page-1)*400); $now_str = m_substr($counter, 0, $page*400); echo substr($now_str, strlen($pre_str), strlen($now_str)-strlen($pre_str)); echo "
"; echo "当前页".$page."/".$page_count; echo "Index"; if($page>1){ echo "Pre"; } if($page<$page_count){ echo "Next"; } echo "End"; ?>
推奨学習: 「PHP ビデオ チュートリアル」
以上がPHPでtxtファイルのページングを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。