字符串分割:preg_split
字符串替换:preg_replace
字符串的匹配与查找:
preg_match()
preg_match_all()
preg_grep()
数学函数:
1.max();
2.min();
注意:参数两个,多个数字,多个数字组成的数组
日期函数:
1.time()
2.date()
3.strtotime()
4.microtime()
Y-m-d 年月日
H:i:s 时分秒
date参数:
Y 2013
y 13
m 03
n 3
d 05
j 5
H 24小时
h 12小时
i 05分钟
s 05秒
w 0-6 周日-周六
t 31 一个月多少天
L 是否为闰年
微妙microtime;
microtime(1); //方便参与数学运算
实例:万年历技术点
1.几年几月几日
2.周日-周六
3.一号是星期几
4.每个月分别几天
5.下一年月和上一年月
php错误处理:
1.关闭和开启报错
2.报错级别
3.报错地方
关闭和开启错误:
display_errors = on
display_errors = off
报错级别:
E_ALL //所有错误
E_ERROR //严重错误
E_WARGING //警告错误
E_PARSE //语法错误
E_NOTICE //提示错误
报什么级别错误:
error_reporting = E_ALL
E_ALL & ~E_NOTICE //报所有错误,但除了提示错误
报错地方:
display_errors = off
//是否从浏览器输出报错
log_errors = on
//是否把错误输出到一个自定义日志文件中
error_log = d:\phplogs\php.log
//错误日志文件为d:\phplogs\php.log
gd库画图:
1.准备画布
2.准备涂料
3.背景填充成黑色
4.圆形并填充成白色
5.输出到浏览器上或保存起来
6.关闭画布
数学函数:
1.max()
2.min()
3.mt_rand()
4.ceil()
5.floor()
6.round()
7.pi()
图片处理函数实用场景:
1.验证码
2.缩放
3.剪裁
4.水印
PHP中创建图像的五个步骤:
1.创建画布资源
2.准备涂料
3.在画布上画图像或文字
4.输出最终图像或保存最终图像
5.释放画布资源
绘制图像:
imagefill()
imagesetpixel()
imageline()
imagerectangle()
imagepolygon()
imageellipse()
imagearc()
imagestring()
imagechar()
imagettftext()
验证码设计:
页面跳转:
1.php跳转
header(“location:index.php”);
2.js跳转
echo “”;
js弹窗:
图片处理函数实用场景:
1.验证码
2.缩放
3.裁剪
4.水印
获取图片的宽度:
1.getimagesize();
2.imagesx();
3.imagesy();
已经存在形成画布资源:
1.imagecreatefromjpeg();
图片缩放函数:
imagecopyresampled();
图片等比例缩放:
图片裁剪函数:
imagecopyresampled();
图片水印函数:
imagecopy();