如何检查缺少的标题/文件,为什么?

时间:2019-03-31 09:21:20

标签: php mysql

Prob[i][0]

结果-select count(*) id from arts where what = 'file';

1713

结果-select title, count(*) c from arts group by title having c > 1; -因此没有重复

zero

没有任何回显,没有任何错误或警告,并且创建了$st = $db->query("select id, title, content from arts where what = 'file' order by title asc"); $st->execute(); $err = ''; while($row = $st->fetch()){ $path = '../temp/' . $row['title']; $file = fopen($path . '.html', "w") or die("Unable to open file!"); if(!$file){ $err .= $row['title'] . ', '; } fwrite($file, $row['content']); fclose($file); } echo $err; 文件。

因此缺少两个文件。

我检查了标题-没有双空格,前导和尾随空格,标题仅是字母数字...

如何检查哪些标题/文件丢失以及为什么?

0 个答案:

没有答案