• <bdo id='rVuyM'></bdo><ul id='rVuyM'></ul>

    <legend id='rVuyM'><style id='rVuyM'><dir id='rVuyM'><q id='rVuyM'></q></dir></style></legend>

      <small id='rVuyM'></small><noframes id='rVuyM'>

    1. <i id='rVuyM'><tr id='rVuyM'><dt id='rVuyM'><q id='rVuyM'><span id='rVuyM'><b id='rVuyM'><form id='rVuyM'><ins id='rVuyM'></ins><ul id='rVuyM'></ul><sub id='rVuyM'></sub></form><legend id='rVuyM'></legend><bdo id='rVuyM'><pre id='rVuyM'><center id='rVuyM'></center></pre></bdo></b><th id='rVuyM'></th></span></q></dt></tr></i><div id='rVuyM'><tfoot id='rVuyM'></tfoot><dl id='rVuyM'><fieldset id='rVuyM'></fieldset></dl></div>

        <tfoot id='rVuyM'></tfoot>

        如何从数组进行分页?

        How to do a pagination from array?(如何从数组进行分页?)
          <tfoot id='2Oie9'></tfoot>

          1. <legend id='2Oie9'><style id='2Oie9'><dir id='2Oie9'><q id='2Oie9'></q></dir></style></legend>
                  <tbody id='2Oie9'></tbody>
              • <i id='2Oie9'><tr id='2Oie9'><dt id='2Oie9'><q id='2Oie9'><span id='2Oie9'><b id='2Oie9'><form id='2Oie9'><ins id='2Oie9'></ins><ul id='2Oie9'></ul><sub id='2Oie9'></sub></form><legend id='2Oie9'></legend><bdo id='2Oie9'><pre id='2Oie9'><center id='2Oie9'></center></pre></bdo></b><th id='2Oie9'></th></span></q></dt></tr></i><div id='2Oie9'><tfoot id='2Oie9'></tfoot><dl id='2Oie9'><fieldset id='2Oie9'></fieldset></dl></div>
                • <bdo id='2Oie9'></bdo><ul id='2Oie9'></ul>

                  <small id='2Oie9'></small><noframes id='2Oie9'>

                  本文介绍了如何从数组进行分页?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个包含要分页显示的数据的数组.

                  I have an array with the data which I want to display with pagination.

                  $display_array = Array
                  (
                      [0] => "0602 xxx2",
                      [1] => "0602 xxx3",
                      [2] => 5 // Total= 2+3
                      [3] => "0602 xxx3",
                      [4] => "0602 saa4",
                      [5] => 7 // Total = 3+4
                  )
                  

                  我尝试过这样的事情

                  function pagination($display_array, $page)
                  {   
                      global $show_per_page;
                      $page = $page < 1 ? 1 : $page;
                      $start = ($page - 1) * $show_per_page;
                      $end = $page * $show_per_page;
                      for($i = $start; $i < $end; $i++)
                      {
                          ////echo $display_array[$i] . "<p>";
                          // How to manipulate this?   
                          // To get the result as I described below.
                      }
                  }
                  

                  我想做一个分页以获得这样的预期结果:

                  I want do a pagination to get the expected result like this:

                  如果我定义 $show_per_page = 2; 那么 pagination($display_array, 1); 输出:

                  If I define $show_per_page = 2; then pagination($display_array, 1); outputs:

                  0602 xxx2
                  0602 xxxx3
                  Total:5
                  

                  paganation($display_array, 2); 输出:

                  0602 xxx3
                  0602 saa4
                  Total:7
                  

                  如果我定义了 $show_per_page = 3;,那么 pagination($display_array, 1); 输出:

                  If I define $show_per_page = 3;, then pagination($display_array, 1); outputs:

                  0602 xxx2
                  0602 xxxx3
                  Total: 5 
                  0602 xxx3
                  

                  paganation($display_array, 2); 输出:

                  0602 saa4
                  Total:7
                  

                  如果我定义 $show_per_page = 4; 输出:

                  0602 xxx2
                  0602 xxxx3
                  Total:5
                  0602 xxx3
                  0602 saa4
                  Total: 7 
                  

                  推荐答案

                  看看这个:

                      function paganation($display_array, $page) {
                          global $show_per_page;
                  
                          $page = $page < 1 ? 1 : $page;
                  
                          // start position in the $display_array
                          // +1 is to account for total values.
                          $start = ($page - 1) * ($show_per_page + 1);
                          $offset = $show_per_page + 1;
                  
                          $outArray = array_slice($display_array, $start, $offset);
                  
                          var_dump($outArray);
                      }
                  
                      $show_per_page = 2;
                  
                      paganation($display_array, 1);
                      paganation($display_array, 2);
                  
                  
                      $show_per_page = 3;
                      paganation($display_array, 1);
                      paganation($display_array, 2);
                  

                  输出为:

                  // when $show_per_page = 2;
                  array
                    0 => string '0602 xxx2' (length=9)
                    1 => string '0602 xxx3' (length=9)
                    2 => int 5
                  array
                    0 => string '0602 xxx3' (length=9)
                    1 => string '0602 saa4' (length=9)
                    2 => int 7
                  
                  // when $show_per_page = 3;
                  array
                    0 => string '0602 xxx2' (length=9)
                    1 => string '0602 xxx3' (length=9)
                    2 => int 5
                    3 => string '0602 xxx3' (length=9)
                  array
                    0 => string '0602 saa4' (length=9)
                    1 => int 7
                  

                  $show_per_page = 3 的输出与您的不同,但我不确定您的期望是什么?您想获取剩下的所有内容(即0602 saa4"和7")以及前一个元素(即0602 xxx3")吗?

                  The output for $show_per_page = 3 is different than yours, but I'm not sure what you expect? You want to fetch everything that is left (i.e. '0602 saa4' and 7) plus one previous element (i.e. '0602 xxx3')?

                  这篇关于如何从数组进行分页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Appending GET parameters to URL from lt;formgt; action(将 GET 参数附加到来自 lt;formgt; 的 URL行动)
                  Forcing quot;Save Asquot; dialog via jQuery GET(强制“另存为通过 jQuery GET 对话框)
                  PHP - get certain word from string(PHP - 从字符串中获取某个单词)
                  How to debug a get request in php using curl(如何使用 curl 在 php 中调试 get 请求)
                  get a # from a url in php(从 php 中的 url 获取 #)
                  PHP - include() file not working when variables are put in url?(PHP - 将变量放入 url 时,include() 文件不起作用?)

                        <bdo id='7Bnfz'></bdo><ul id='7Bnfz'></ul>
                        <i id='7Bnfz'><tr id='7Bnfz'><dt id='7Bnfz'><q id='7Bnfz'><span id='7Bnfz'><b id='7Bnfz'><form id='7Bnfz'><ins id='7Bnfz'></ins><ul id='7Bnfz'></ul><sub id='7Bnfz'></sub></form><legend id='7Bnfz'></legend><bdo id='7Bnfz'><pre id='7Bnfz'><center id='7Bnfz'></center></pre></bdo></b><th id='7Bnfz'></th></span></q></dt></tr></i><div id='7Bnfz'><tfoot id='7Bnfz'></tfoot><dl id='7Bnfz'><fieldset id='7Bnfz'></fieldset></dl></div>
                          <tbody id='7Bnfz'></tbody>

                            <legend id='7Bnfz'><style id='7Bnfz'><dir id='7Bnfz'><q id='7Bnfz'></q></dir></style></legend>

                            <small id='7Bnfz'></small><noframes id='7Bnfz'>

                            <tfoot id='7Bnfz'></tfoot>