PHP實現(xiàn)文件內(nèi)容的分頁讀取

/**
     * 文件內(nèi)容分頁讀取函數(shù)
     * @param  string/Array $file_path_arr 文件名
     * @param  int $start 分頁起始行數(shù)
     * @return json
     * @author gongzheng <990653058@qq.com>
     * @since 2014年2月10日 15:23:51
     */
function filePage( $file_path_arr, $start, $limit = 10 ) {
        $data = array( ); //返回數(shù)據(jù)格式
        $line = -1; //數(shù)據(jù)總行數(shù)的統(tǒng)計
        foreach ( $file_path_arr as $key => $file_path ) {
            $file_handle = new SplFileObject( $file_path );
            $file_line = -1;
            while ( !$file_handle->eof() ) {
                $line++;
                $file_line++;
                if ( $line == $start ) {
                    for ( $i = 0; $i < $limit; $i++ ) {
                        if ( !$file_handle->eof() ) {
                            $file_handle->seek( $file_line );
                            $line_arr = str_getcsv( $file_handle->current() );
                            if ( isset( $line_arr[2] ) ) {
                                $data[] = $line_arr;
                            }
                        }
                        $file_line++;
                    }
                    $current_key = $key + 1;
                    //如果小于$limit接著讀取下一個文件
                    if ( isset( $file_path_arr[$current_key] ) ) {
                        while ( count( $data ) < $limit ) {
                            if ( !isset( $file_path_arr[$current_key] ) ) {
                                break;
                            }
                            $file_handle = new SplFileObject( $file_path_arr[$current_key] );
                            $num = $limit - (count( $data ));
                            for ( $i = 0; $i < $num; $i++ ) {
                                if ( !$file_handle->eof() ) {
                                    $file_handle->seek( $i );
                                    $line_arr = str_getcsv( $file_handle->current() );
                                    if ( isset( $line_arr[2] ) ) {
                                        $data[] = $line_arr;
                                    }
                                }
                            }
                            $current_key++;
                        }
                    }
                    break;
                }
            }
            break;
        }
        return $data;
    }

網(wǎng)頁題目:PHP實現(xiàn)文件內(nèi)容的分頁讀取
地址分享:http://muchs.cn/article16/iegidg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃網(wǎng)站營銷自適應(yīng)網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、服務(wù)器托管、營銷型網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名