php学习
fool_frog
这个作者很懒,什么都没留下…
展开
-
php强制下载文件函数
有些类型文件(如txt,dat等),浏览器打开是默认是直接打开内容,也许你使用了,但是浏览器才不管你那一套,照样直接打开。我想实现直接下载怎么办:一下是php下载文件函数:function downloadFile($file){ /*Coded by Alessio Delmonti*/ $file_name =原创 2013-05-29 16:25:50 · 769 阅读 · 0 评论 -
php获取以前时间
//昨天 print date('Y-m-d' , strtotime('-2 day')); //上星期 print date('Y-m-d' , strtotime('-1 week')); //上个月 print date('Y-m-d' , strtotime('-1 month')); //去年 print date('Y-m-d' , strtotime('原创 2013-06-27 11:25:28 · 775 阅读 · 0 评论