我编写了这个PHP脚本来合并/ files / dir中的所有文本文件,并按字母顺序排列它所创建的新文本文件。
它曾经工作,但突然间它不再写新文件了。甚至没有空白的新文件,里面没有任何内容。
我不明白为什么这个脚本没有将dir文件中的所有文本文件合并到一个按字母顺序排列的listTogether.txt中。
以下是代码:
<?php
$files = glob("./files/*.??");
$out = fopen("listTogether.txt", "w");
foreach($files as $file){
fwrite($out, file_get_contents($file));
}
fclose($out);
?>
<!Doctype HTML>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>file merger</title>
</head>
<body>
</body>
</html>
我也没有收到任何错误。它只是不再编写listTogether.txt了。