Loading... ## 简介 PHP 是一种创建动态交互性站点的强有力的服务器端脚本语言。 ## PHP代码的标签 ![lj5gds8r.png](http://flt-pan.58heshihu.com/blog/typecho/lj5gds8r.png) ## 数据类型 > String(字符串) > Integer(整型) > Float(浮点型) > Boolean(布尔型) > Array(数组) > Object(对象) > NULL(空值) > Resource(资源类型) ## 流程控制 if,elseif ... else和switch语句 ## 循环语句 PHP中的循环用于执行指定次数的相同代码块。PHP支持以下四种循环类型。 > for - 循环遍历一段代码指定的次数。 > while - 只要指定的条件为真,就循环遍历代码块。 > do ... while - 循环遍历一段代码至少一次,然后只要特殊条件为真,就重复循环。 > foreach - 循环遍历数组中每个元素的代码块。 continue和break关键字结束循环。 ## 常用函数 [1.常用函数大全](https://blog.58heshihu.com/index.php/archives/87/) [2.常用函数](https://www.kancloud.cn/baaaa/organize/2765645) [3.数组操作](https://blog.58heshihu.com/index.php/archives/108/) ## 文件包含 ### include()函数 include()函数获取指定文件中的所有文本,并将其复制到使用include函数的文件中。如果加载文件时出现任何问题,则include()函数会生成警告(Warnning)但脚本将继续执行。 ### require()函数 require()函数获取指定文件中的所有文本,并将其复制到使用require函数的文件中。如果加载文件时出现任何问题,则require()函数会生成致命错误并停止执行脚本。因此,除了处理错误条件外,require()和include()没有区别。 > 建议使用require()函数而不是include(),因为如果文件丢失或名称错误,脚本不应继续执行。 ## 文件I/O [文件I/O](https://blog.58heshihu.com/index.php/archives/91/) ## 编码规范 ![lj5hvqw3.png](http://flt-pan.58heshihu.com/blog/typecho/lj5hvqw3.png) ## 正则表达式 [正则表达式](https://blog.58heshihu.com/index.php/archives/94/) ## 错误和异常处理 [错误和异常处理](https://blog.58heshihu.com/index.php/archives/96/) ## 错误调试 [错误调试](https://blog.58heshihu.com/index.php/archives/98/) ## 魔术常量 [魔术常量](https://blog.58heshihu.com/index.php/archives/100/) ## 命名空间(namespace) [命名空间(namespace)](https://blog.58heshihu.com/index.php/archives/102/) ## 面向对象 [面向对象](https://blog.58heshihu.com/index.php/archives/104/) ## 语法糖 [语法糖](https://blog.58heshihu.com/index.php/archives/106/) 最后修改:2023 年 09 月 21 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏