7.1.标准函数 标准php发行包中有多个标准函数,这些标准函数都是系统内置的,不需要用户创建就可以直接使用 如: output eadcbaabbeeffe 7c4a8dcaafedcfb 3. 7.2.自定义函数 7.2.1函数命名基本原则: 1.函数名不能和已有的函数名重名。 2.函数名只能包含字母、数字和下划线。 3.函数名不能以数字开头 7.2.2基本使用:用function进行声明 output . . 7.2.3按值传参 output 5 7.2.4按引用传参 output 7.2.5返回多个值的函数调用 output Array ( [0] => anllin [1] => ) 7.2.6另一种返回多个值的函数调用(实用:推荐) output Array ( [0] => Array ( [0] => Bob [1] => ) [1] => Array ( [0] => John [1] => ) [2] => Array ( [0] => Mark [1] => ) ) 注意:函数调用是不区分大小写的,但是变量名是区分大小写的。 7.2.7理解作用域: 局部变量: 在函数内部声明的变量。 全局变量: 在函数外部声明的变量。 7.2.8局部变量转换成全局变量 output 7.2.9超级全局变量$GLOBALR的使用 Output 7.3.文件包含 7.3.1 Include的使用,可以包含相同的文件多次 output eadcbaabbeeffe 7c4a8dcaafedcfb 3. -------------------------------------------------------------------------------- eadcbaabbeeffe 7c4a8dcaafedcfb 3. -------------------------------------------------------------------------------- eadcbaabbeeffe 7c4a8dcaafedcfb 3. 7.3.2 include_once使用上和include没什么区别,但是调用多次只会包含相同的文件一次 output eadcbaabbeeffe 7c4a8dcaafedcfb 3. 7.3.3 require() 语句包含并运行指定文件。 output eadcbaabbeeffe 7c4a8dcaafedcfb 3. -------------------------------------------------------------------------------- eadcbaabbeeffe 7c4a8dcaafedcfb 3. -------------------------------------------------------------------------------- eadcbaabbeeffe 7c4a8dcaafedcfb 3. 7.3.4 require_once() 语句在脚本执行期间包含并运行指定文件.但是不重复包含相同的文件。 output eadcbaabbeeffe 7c4a8dcaafedcfb 3.s 7.3.5 include与require的区别 Include后面如果还有其他代码,当调用include出错时,后面的代码还会继续执行,但是require则不会。 Include在调用一个不存在的文件时,会给出警告,但是会继续执行后面的代码。 output Warning: include(demo.php) [function.include]: failed to open stream: No such file or directory in D:AppServwwwBasic7demo.php on line 2 Warning: include() [function.include]: Failed opening 'demo.php' for inclusion (include_path='.;C:php5pear') in D:AppServwwwBasic7demo.php on line 2 this is demo.php Require在调用一个不存在的文件时,会给出一个错误,并中止代码的执行。 Output Warning: require(demo.php) [function.require]: failed to open stream: No such file or directory in D:AppServwwwBasic7demo.php on line 2 Fatal error: require() [function.require]: Failed opening required 'demo.php' (include_path='.;C:php5pear') in D:AppServwwwBasic7demo.php on line 2 7.4.魔法常量
推荐整理分享第七章 php自定义函数实现代码(php如何自定义函数),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php自定义表单,php如何自定义函数,php自定义header,php自定义表单,php自定义函数的语法格式,php自定义变量的方法是,php自定义字段,php如何自定义函数,内容如对您有帮助,希望把文章链接给更多的朋友!
名称
描述
_FILE_
当前文件名
_LINE_
当前行号
_FUNCTION_
当前函数名
_CLASS_
当前类名
_METHOD_
当前方法名
所谓的魔法常量,并不是真的常量,而是根据场合去获取固定值的变量 output D:AppServwwwBasic7demo.php 5 funcTest
选择PHP作为网站开发语言的原因分享 以下的几点总结了选择PHP作为网站开发语言的特点和优势。1.开源PHP是一种开源语言(免费下载、免费使用、免费分享),不管是开发者还是用户都无需
PHP中strtotime函数使用方法分享 一,获取指定日期的unix时间戳strtotime("-1-")示例如下:1.echostrtotime("-1-")结果:说明:返回年1月日0点0分0秒时间戳二,获取英文文本
PHP反转字符串函数strrev()函数的用法 呵呵,好玩吧,一真的想做一个函数百科网,只是由于我的精力有限了,只写WEB开发笔记,一天一篇文章的更新就已经够忙了,因为,我的职业也不只是