Blogger Information
Blog 8
fans 0
comment 0
visits 11690
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php时间和日期
BlogofDaniel
Original
1486 people have browsed it

date(参数1,参数二);格式化日期和时间。(服务器)

参数一:Y-m-d H-i-s (改变字母大小写效果不同哦,可以看成是echo里套了几个变量)

参数二:时间戳 

UNIX时间戳

从1970年1月1日0时0分0秒开始(UNIX世纪元),所经过的时间秒数

时间戳函数


time() 得到当前的系统时间戳


日期时间函数


date("Y-m-d H:i:s",time()) 格式化时间戳


其他函数

Strtotime(str) 将字符串转换成时间戳

strtotime("2008/6/8")

strtotime("+3 Days") ;

strtotime("now"); //yesterday tomorrow

注意:使用英文单词的话,只能识别一个单词,不能识别词组


date_default_timezone_get()

得到当前PHP.ini的时区


date_default_timezone_set("PRC")

 修改服务器的时区


 ini_get("配置项")

获取配置项的值,如果配置项不存在(已被注释),得不到值


ini_set("配置项","值")

修改配置项的值,如果不能修改,返回false,如果修改成功,返回修改前的值


*****ini方法要优先获取权限

注意:


MAX_FILE_SIZE 设置不了


 这种设置只能影响该当前脚本,若其他脚本显示时间,仍是PHP.ini 中的时区


在安全模式下,有些配置项的无法修改 upload_max_filesize 、post_max_size 、max_file_uploads


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post