
php写入文件
司江龙
在无人问津的日子偷偷努力才能在关键时刻一鸣惊人,加油吧!愿自己永远是少年!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PHP把内容写入文件,并每次自动换行
file_put_contents("test.txt", "This is another something.\r\n", FILE_APPEND);原创 2018-07-20 09:34:17 · 7416 阅读 · 0 评论 -
图片上传时获取路径神器
define('BASE_PATH',realpath(__DIR__.'/../')."/"); //当前目录的上一层目录原创 2018-08-30 15:19:32 · 491 阅读 · 0 评论 -
PHP 使用do while 实现定时器功能
<?phprequire "./config.php";require "./function/function.php";header("content-type:text/html;charset=utf-8"); ignore_user_abort();//关闭浏览器仍然执行set_time_limit(0);//让程序一直执行下去$interval=24*3...原创 2018-10-11 09:42:32 · 1334 阅读 · 0 评论