摘要:// 写入文件 public function write($txt){ $filename = "example.txt"; $file = fopen($filename, "a") or die("Unable to open file!"); fwrite($file, $txt."\n")
阅读全文
posted @ 2025-03-25 17:02
CareyTao
随笔分类 - TP
摘要:// 写入文件 public function write($txt){ $filename = "example.txt"; $file = fopen($filename, "a") or die("Unable to open file!"); fwrite($file, $txt."\n")
阅读全文
posted @ 2025-03-25 17:02
摘要://查询 M()->query($sql); //增删改 M()->execute($sql);
阅读全文
posted @ 2021-11-10 16:00
|