• <small id='nxCu0'></small><noframes id='nxCu0'>

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

      1. <tfoot id='nxCu0'></tfoot>
      2. <legend id='nxCu0'><style id='nxCu0'><dir id='nxCu0'><q id='nxCu0'></q></dir></style></legend>

        PHP:显示目录中的最新图像?

        时间:2023-10-30
          <bdo id='GT8QZ'></bdo><ul id='GT8QZ'></ul>

          1. <small id='GT8QZ'></small><noframes id='GT8QZ'>

                <tbody id='GT8QZ'></tbody>

                <legend id='GT8QZ'><style id='GT8QZ'><dir id='GT8QZ'><q id='GT8QZ'></q></dir></style></legend>
                • <i id='GT8QZ'><tr id='GT8QZ'><dt id='GT8QZ'><q id='GT8QZ'><span id='GT8QZ'><b id='GT8QZ'><form id='GT8QZ'><ins id='GT8QZ'></ins><ul id='GT8QZ'></ul><sub id='GT8QZ'></sub></form><legend id='GT8QZ'></legend><bdo id='GT8QZ'><pre id='GT8QZ'><center id='GT8QZ'></center></pre></bdo></b><th id='GT8QZ'></th></span></q></dt></tr></i><div id='GT8QZ'><tfoot id='GT8QZ'></tfoot><dl id='GT8QZ'><fieldset id='GT8QZ'></fieldset></dl></div>
                • <tfoot id='GT8QZ'></tfoot>
                  本文介绍了PHP:显示目录中的最新图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个摄像头服务器将图像通过 FTP 传输到网络服务器.任何人都可以建议我需要的 PHP 代码片段来查看服务器的公共根目录 (/public_html) 并显示最近的四个图像吗?

                  I have a camera server FTPing images to a webserver. Can anyone suggest the PHP snippet I'd need that would look through the server's public root directory (/public_html) and display the four most recent images?

                  我可以告诉相机服务器按日期/时间命名上传的图像,但需要[例如.image-021020102355.jpg 用于 2010 年 10 月 2 日晚上 11:55 创建的图像]

                  I can tell the camera server to name uploaded images by date/time, however needed [eg. image-021020102355.jpg for an image created 2nd oct 2010 at 11:55pm]

                  谢谢!

                  推荐答案

                  应该这样做:

                  <?php
                  foreach (glob('*.jpg') as $f) {
                      # store the image name with the last modification time and imagename as a key
                      $list[filemtime($f) . '-' . $f] = $f;
                  }   
                  
                  $keys = array_keys($list);      
                  sort($keys);                    # sort is oldest to newest,
                  
                  echo $list[array_pop($keys)];   # Newest
                  echo $list[array_pop($keys)];   # 2nd newest
                  

                  如果您可以使文件名 YYYYMMDDHHMM.jpg sort() 可以将它们按正确的顺序排列,这将起作用:

                  If you can make the filenames YYYYMMDDHHMM.jpg sort() can put them in the right order and this would work:

                  <?php 
                  foreach (glob('*.jpg') as $f) {
                      # store the image name
                      $list[] = $f;
                  }
                  
                  sort($list);                    # sort is oldest to newest,
                  
                  echo array_pop($list);   # Newest
                  echo array_pop($list);   # 2nd newest
                  

                  这篇关于PHP:显示目录中的最新图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:自动从网络服务器中删除文件 下一篇:Wordpress 插件安装:无法创建目录

                  相关文章

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

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

                    1. <small id='Iirb5'></small><noframes id='Iirb5'>

                    2. <legend id='Iirb5'><style id='Iirb5'><dir id='Iirb5'><q id='Iirb5'></q></dir></style></legend>