0

我在做一些我确信很简单的事情时遇到了一些问题。

我在 Google 和 stackoverflow 上看了好几个小时,但似乎找不到答案。我确实发现与我尝试修改的相似,但不幸的是没有成功。

我有一个文本文件(names.txt),其中包含与此类似的值:

Jim|Bob|Keith|Fred|Steve<br>

我需要一个可以每分钟运行一次的脚本来更改文件的内容,以便以相同的格式但按字母顺序存储值:

Bob|Fred|Jim|Keith|Steve<br>

然后将它们作为选项显示在 html 下拉框中。

任何帮助将不胜感激。提前感谢你的帮助。

4

1 回答 1

1

你可以试试这个:

$fileName = 'names.txt';
$data     = file_get_contents($fileName);

// Assuming that the file had the data in one line...

// Split the data using the delimiter
$split = explode("|", $data);

// Sort
sort($split);

// Put it all back together
$data = implode("|", $split);

// Store it back in the file
file_put_contents($fileName, $data);
于 2012-10-29T15:33:18.380 回答