当前位置:首页 >

PHP

php获取系统当前日期

<?php echo $showtime=date("Y-m-d H:i:s");?>   显示的格式: 年-月-日 小时:分钟:秒
相关时间参数:
a - "am" 或是 "pm"  
A - "AM" 或是 "PM"
d - 几日,二位数字,若不足二位则前面补零; 如: "01" 至 "31".....

BlueCode时间:2014-04-07 分类:PHP阅读全文

PHP生成GBK编码或UTF-8编码的文件

linux是根据文件内容编码来觉得文件的编码
生成文件之前,先转成需要的编码,推荐使用函数 mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] ) 
转完后就可以生成文件,文件编码就是内容的编码。
例子:
//生成新的文件.....

BlueCode时间:2014-04-07 分类:PHP阅读全文

php发送get、post请求的几种方法【转】

方法1: 用file_get_contents 以get方式获取内容
$url=''http://www.domain.com/'';
$html = file_get_contents($url);
echo $html;
?>.....

BlueCode时间:2014-04-01 分类:PHP阅读全文

关于博主

博主

博主:BlueCode

职业:web程序

简介:2002年开始一直从事Web制作,网站运营,会ASP+MSSQL PHP+MYSQL