博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2014年7月26日

摘要: 1.创建画布: $img=imagescreatetruecolor(200,200); 创建颜色并填充 $red=imagecolorallocate($img,255,0,0); //创建颜色 $imagefill($img,0,10,$red); //填充颜色2.画图形 矩形: ... 阅读全文

posted @ 2014-07-26 23:28 SmarTom 阅读(433) 评论(0) 推荐(0)

摘要: 1.介绍UNIX时间戳 格林威治时间2.在PHP类中获取日期和时间 time(); getdate()输出数组3.日期和时间的格式化 date("H-m-d H:i:s",time());4.将日期和时间转成UNIX时间戳 mktime(小时,分钟,月,日,年);5.修改PHP的默认时区 ... 阅读全文

posted @ 2014-07-26 23:01 SmarTom 阅读(241) 评论(0) 推荐(0)