Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个模板 网站。我在 txt 文件中有一个准备好的数据库。我知道使用 MySQL (ORDER BY idDESC) 可以从下到上排序,但我不想将这些文件插入数据库中。我希望它们从 txt 文件中从下到上排序,但不知道合适的 PHP 代码。我听说它类似于 sort() 或 usort()。一点帮助将不胜感激!
id
提前致谢!
你可以结合file()和sort()
file()将文件读入一个数组(每一行都变成一个元素),然后你可以用sort()
file()
sort()