小弟我的PHP个人分享

WBOY
Release: 2016-06-13 11:00:41
Original
879 people have browsed it

我的PHP个人分享

1.去掉下划线? a:hover { text-decoration:underline;color: red}
2.日期 date('Y-m-d');
? 年:
?Y:表示四位数字
?y:表示两位数字
? 月:
?M:三个缩写字符
?F:英文全写
?m:月份,带前导0
?n:不带前导0
? 日:
?j:不带前导日期
?d:带前导0的日期
?S:日期的后缀

3.时间表示 date('h:i:s a');
? 时:
?g:小时不带前导(12小时制)
?h:小时带前导(12小时制)
?G:小时不带前导(24小时制)
?H:小时带前导(24小时制)

4.PHP中读写文件:
?var $fp = fopen(filename,mode);
?mode 说明
?"r" 只读方式打开,将文件指针指向文件开头。
?"r+" 读写方式打开,将文件指针指向文件开头。
?"w" 写入方式打开,将文件指针指向文件开头并将文件大小截为零。如果文件不存在则尝试创建。
?"w+" 读写方式打开,将文件指针指向文件开头并将文件大小截为零。如果文件不存在则尝试创建。
?"a" 写入方式打开,将文件指针指向文件末尾。如果文件不存在则尝试创建。
?"a+" 读写方式打开,将文件指针指向文件末尾。如果文件不存在则尝试创建。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!