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

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

  • <tfoot id='U0G6K'></tfoot>

        带有时间戳列表的事件列表,在表格显示中按小时分组,在 PHP 中.

        List of events with a list of timestamps, grouped by hour in a tabular display, in PHP.(带有时间戳列表的事件列表,在表格显示中按小时分组,在 PHP 中.)
      1. <legend id='iXjMP'><style id='iXjMP'><dir id='iXjMP'><q id='iXjMP'></q></dir></style></legend>
          <tbody id='iXjMP'></tbody>

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

            <tfoot id='iXjMP'></tfoot>
            • <small id='iXjMP'></small><noframes id='iXjMP'>

                <bdo id='iXjMP'></bdo><ul id='iXjMP'></ul>

                • 本文介绍了带有时间戳列表的事件列表,在表格显示中按小时分组,在 PHP 中.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在重构时,我正在为 PHP 中的时间表(日历)寻找优化算法.

                  While refactoring, I am looking for an optimised algorithm for a timetable (calendar) in PHP.

                  我有一个包含时间戳列表的事件列表.这必须以表格的方式呈现.当前代码有效,但有 a) 相当多的怪癖和 b) 非常不灵活.我正在寻找重构这件作品并寻找优化方式的输入.

                  I have a list of events which have a list of timestamps. This must be presented in a tabular way. The current code works, but has a) quite some quircks and is b) very inflexible. I am looking to refactor this piece and looking for input on optimised ways.

                  此处示例,请注意带有小时的表格标题.那一小时内的时间被分组在该列中.一个事件,在一小时内有两个时间戳可以忽略(可能只在理论上发生,根据技术文档)

                  Example here, notice the header of the table bearing the hours. And the times within that hour being grouped in that column. One event, having two timestamps in one hour can be ignored (may only happen in theory, as per the technical docs)

                  该表是用 Drupals theme_table() 构建的,我可以构建从任何数组向上,为每一承载数组.然而,这里对 Drupal 部分没什么兴趣:)

                  The table is built with Drupals theme_table(), which I can build up from any array, bearing arrays for each row. the Drupal part, however, is of little interest here :)

                  当前代码(片段):

                  <?php
                  //inside function that builds the content for the page linked to above:
                  $this_morning = _playdates_get_start_of_day_with($timestamp);
                  $this_night = _playdates_get_end_of_day_with($timestamp);
                  $nodes = _playdates_load_all_in_range($types, $this_morning, $this_night);
                  usort($nodes, '_playdates_cmp_titles');
                  //we now have a list of "nodes", being the events listed in the first column, which have
                  //  a list of playdates, the timestamps. $node->nid is a unique id for each event.  
                  foreach ($nodes as $node) {
                    $times = $dates = array();
                    if (is_array($node->starts_at)) {
                      foreach ($node->starts_at as $starts_at) {
                        $date = getdate($starts_at);
                        $dates[$starts_at] = $date;
                        if (!isset($active) && ($timestamp <= ($date[0] + $timezone))) {
                          $active = _playdates_get_idx_hour($date);
                        }
                      }
                      $times = _playdates_group_by_hour($dates);
                      foreach ($times as $key => $value) {
                        $header_times[$key] = $key;
                      }
                      $header = array_merge($header, $header_times);
                      $entries[$node->nid] = $node;
                      $entries[$node->nid]->times = $times;
                    }
                  }
                  
                  function _playdates_group_by_hour($timestamps, $playdate = NULL) {
                    $indexes = array();
                    foreach ($timestamps as $key => $value) {
                      $indexes[_playdates_get_idx_hour($value)] = theme('playdates_format_time', $value, $playdate);
                    }
                    ksort($indexes);
                    return $indexes;
                  }   
                  
                  function _playdates_get_idx_hour($date) {
                    return playdates_format_date($date[0], 'custom', 'H:00');
                  }
                  

                  所以,模式是:抓取(并排序)事件列表.循环,对于每个事件,循环时间戳并创建一个数组,键是时间戳的小时(按小时分组).

                  So, the pattern is: grab (and order) the list of events. Loop over that, for each event, loop over the timestamps and create an array with the key being the hour of the timestamp (group by hours).

                  有更好的模式吗?有没有更通用的方法来实现这一目标?我可以搜索任何关键字(我不知道如何调用这样的模式)?

                  Are there better patterns? Is there a more generic way to achieve this? Any keywords that I can search for (I have no idea how such a pattern would be called)?

                  示例数据集$nodes(删除了不必要的数据)如下所示:

                  example dataset The $nodes (unnessecary data removed) look like this:

                  array(15) {
                    [1]=>
                    object(stdClass)#48 (6) {
                      ["title"]=> 
                      string(19) "Cosa voglio di più"
                      ["type"]=>
                      string(4) "film"
                      ["nid"]=>
                      string(4) "2823"
                      ["premiere"]=>
                      object(stdClass)#49 (1) {
                        ["starts_at"]=>
                        string(10) "1286550000"
                      }
                      ["starts_at"]=>
                      array(2) {
                        [0]=>
                        string(10) "1286550000"
                        [1]=>
                        string(10) "1286559000"
                      }
                      ["ends_at"]=>
                      array(2) {
                        [0]=>
                        string(1) "0"
                        [1]=>
                        string(1) "0"
                      }
                    }
                    [12]=>
                    object(stdClass)#46 (6) {
                      ["title"]=>
                      string(5) "Tirza"
                      ["type"]=>
                      string(4) "film"
                      ["nid"]=>
                      string(4) "2813"
                      ["premiere"]=>
                      object(stdClass)#47 (1) {
                        ["starts_at"]=>
                        string(10) "1286550000"
                      }
                      ["starts_at"]=>
                      array(3) {
                        [0]=>
                        string(10) "1286550000"
                        [1]=>
                        string(10) "1286558100"
                        [2]=>
                        string(10) "1286566200"
                      }
                      ["ends_at"]=>
                      array(3) {
                        [0]=>
                        string(1) "0"
                        [1]=>
                        string(1) "0"
                        [2]=>
                        string(1) "0"
                      }
                    }
                    [14]=>
                    object(stdClass)#36 (6) {
                      ["title"]=>
                      string(47) "Vision - aus dem Leben der Hildegard von Bingen"
                      ["type"]=>
                      string(4) "film"
                      ["nid"]=>
                      string(4) "2783"
                      ["premiere"]=>
                      object(stdClass)#39 (1) {
                        ["starts_at"]=>
                        string(10) "1286541900"
                      }
                      ["starts_at"]=>
                      array(1) {
                        [0]=>
                        string(10) "1286541900"
                      }
                      ["ends_at"]=>
                      array(1) {
                        [0]=>
                        string(1) "0"
                      }
                    }
                  }
                  

                  推荐答案

                  我对 Drupal 一点都不熟悉,所以我将根据我自己的方法提出建议,以解决您对重构显示的请求一列中的电影名称列表,以及相应时间列中的开始时间.

                  I'm not familiar with Drupal at all, so I'm going to make a suggestion based on my own approach to your request to refactor the display of a list of movie titles in one column, and the start time in the appropriate time column.

                  您从包含电影标题和开始时间戳的电影(或电影")数组开始.我假设您可以在某处检索或创建列标题的小时数数组.

                  You are starting with an array of movies (or 'films') containing movie titles and start timestamps. I assume somewhere you can retrieve or create an array of hours for the column title.

                  下面的示例忽略了您正在处理一个对象,或者该对象包含数组, 只是为了展示另一种模式方法.此模式不是您似乎正在执行的所有格式化和排序,而是遍历每部电影并使用第二个 foreach 遍历小时列,并测试电影时间是否与小时时间匹配.

                  The example below ignores that you are dealing with an object, or that the object contains arrays, only to exhibit an alternate pattern approach. Rather than all the formatting and sorting you appear to be doing, this pattern iterates over each movie and uses a second foreach to iterate over the hour columns, and tests if the movie time matches the hour time.

                  <?php foreach($movie_array as $movie){
                      echo '<td>'.$movie['title'].'</td>';
                      foreach($hours as $hour){
                          if(date('H',$movie['starts_at']) == date('H',$hour)){
                              echo '<td>'.date('H:i',$movie['starts_at']).'</td>';
                          }//endif
                          else{
                              echo '<td></td>';
                          }//endelse
                      }//endforeach
                   }//endforeach
                  ?>
                  

                  我跳过了设置表格的步骤,当然,您可以将我的 html 实体替换为您喜欢设置表格的方式.

                  I've skipped setting up the table, and of course, you could replace my html entities with however you prefer to set up the table.

                  我认为这是一种可行的模式,它似乎简化了原始模式的逻辑,并且保持了灵活性.希望我没有误解和遗漏您问题的关键部分.

                  I think this is a viable pattern that seems to simplify the logic of your original pattern, and remains flexible. Hopefully I haven't misunderstood and omitted a critical part of your problem.

                  这篇关于带有时间戳列表的事件列表,在表格显示中按小时分组,在 PHP 中.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  How do I pass parameters into a PHP script through a webpage?(如何通过网页将参数传递给 PHP 脚本?)
                  PHP - include a php file and also send query parameters(PHP - 包含一个 php 文件并发送查询参数)
                  Where can I read about conditionals done with quot;?quot; and quot;:quot; (colon)?(我在哪里可以阅读有关使用“?完成的条件的信息?和“:(冒号)?)
                  Accessing arrays whitout quoting the key(在不引用键的情况下访问数组)
                  What is the name for the quot;lt;lt;lt;quot; operator?(“lt;lt;lt;的名字是什么?操作员?)
                  default as first option in switch statement?(默认为 switch 语句中的第一个选项?)
                • <small id='6yzjP'></small><noframes id='6yzjP'>

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

                      <legend id='6yzjP'><style id='6yzjP'><dir id='6yzjP'><q id='6yzjP'></q></dir></style></legend>
                            <bdo id='6yzjP'></bdo><ul id='6yzjP'></ul>