摘要: function delDirAndFile($path, $delDir = FALSE){ if (is_array($path)) { foreach ($path as $subPath) delDirAndFile($subPath, $delDir); } if (is_dir($pat 阅读全文
posted @ 2018-03-14 20:08 学知无涯 阅读(132) 评论(0) 推荐(0) 编辑
摘要: $file = fopen('data.txt','a+') or die('Unable to open file!');fwrite($file,"\r\n".'hahah');fclose($file);windows中,注意:使用双引号\n\r才可以换行,单引号不可以,\n\r也不可以。 l 阅读全文
posted @ 2018-03-14 11:52 学知无涯 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 共享锁定(读取的程序),LOCK_SH独占锁定(写入的程序),LOCK_EX释放锁定(无论共享或独占),LOCK_UN如果不希望 flock() 在锁定时堵塞,则给 lock 加上 LOCK_NB 小示例:$file = fopen('data.txt','a+') or die('Unable t 阅读全文
posted @ 2018-03-14 11:44 学知无涯 阅读(218) 评论(0) 推荐(0) 编辑