PHP常用知识点
echo
输出一个或者多个字符串
var_dump
打印变量的详细信息,可以一次打印一个或者多个变量的详细信息;
print_r()
打印数组的信息 print_r($var)
unset
销毁变量,可以一次销毁一个或者多个,销毁之后变量的值为null unset($var,...)
header语句的作用
header('content-type:text/html;charset=utf-8');
告诉浏览器以什么编码方式解析什么类型的文档
ord($character)
返回指定字符的ASCII码值
chr($ascii)
根据ASCII码值返回指定的字符
strpos()
stripos()
strrpos()
strripos()
date_default_timezone_set()
设定用于一个脚本中所有日期时间函数的默认时区
date_default_timezone_get()
取得一个脚本中所有日期时间函数所使用的默认时区
time()
返回当前的 Unix 时间戳
date()
格式化一个本地时间/日期
exit($msg)/die($msg)
输出一个消息并且退出当前脚本
PHP常见错误
-
Parse error(解析错误): syntax error(语法错误), unexpected ‘<', expecting end of file
-
Notice(通知): Undefined variable(未定义的变量): sdkljflskdjflksdjflksdjfklj
-
Catchable fatal(致命) error: Object of class stdClass could not be converted to string
-
Warning(警告): settype(): Invalid(非法) type