使用 PHP 限制文件夹列表
我的一个文件夹中有多个子文件夹。我需要显示至少 5 个子文件夹(最后更新)。用PHP可以吗?
I have multiple sub folders in a folder. I need to show minimum 5 sub folder (Last Updated). Is it possible with PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,欢迎来到 StackOverflow! 阅读常见问题解答以帮助您与此问答网站互动。
现在,让我们进入问题。如果我正确理解你的问题(鉴于你提供给我们的信息很少,这相当困难),你想显示某个文件夹中的 5 个子文件夹。
很简单,您可以使用 DirectoryIterator、数组 和 krsort 为此。这是例子:
First of all, welcome to StackOverflow!. Read FAQ to help you interact with this Q/A site.
Now, let's move to the question. If I understand your question correctly (which is quite hard, given the sparse information you gave to us), you want to display 5 subfolder from certain folder.
It's quite simple, you can use a combination of DirectoryIterator, array, and krsort for that. Here's the example: