PHP 函数之自定义函数介绍

在 PHP 中,提供了超过 700 个内建的函数. PHP 的函数分为用户自定义函数和系统内置函数.内置函数可以直接使用,用户自定义函数需要使用关键字 function 来定义.

自定义函数

函数(function),可以看着是为实现某个功能的独立的程序语句集合.我们将某个功能写成一个函数后,就可以在需要的地方方便的使用它.合理的使用函数,可以让我们的PHP程序更加简洁易读,更加科学. 

实例代码如下:

  1. function function_name(arg1,arg2,……) 
  2.     函数功能代码 

创建 PHP 函数

函数是一种可以在任何被需要的时候执行的代码块.

创建 PHP 函数:

所有的函数都使用关键词 "function()" 来开始 

命名函数 – 函数的名称应该提示出它的功能.函数名称以字母或下划线开头. 

添加 "{" – 开口的花括号之后的部分是函数的代码. 

插入函数代码 

添加一个 "}" – 函数通过关闭花括号来结束. 

函数的参数

参数的功能是传递信息到函数. 

现在,我们要在 PHP 脚本中使用这个函数了:

实例代码如下:

  1. <html> 
  2. <body> 
  3. <?php 
  4. function writeMyName() 
  5.   { 
  6.   echo "David Yang"
  7.   } 
  8. echo "Hello world!<br />"
  9. echo "My name is "
  10. writeMyName(); 
  11. echo ".<br />That's right, "
  12. writeMyName(); 
  13. echo " is my name."
  14. ?> 
  15. </body> 
  16. </html> 

以上代码的输出:

Hello world!

My name is David Yang.

That's right, David Yang is my name.

实例代码如下:

  1. <?php 
  2. function city_name($city
  3.     echo "城市名称为:".$city
  4. city_name("shanghai");    //执行该函数,执行结果是输出“城市名称为:shanghai”字符串 
  5. ?> 

可以给函数的参数指定默认值,以便在没有指定参数值时,采用参数默认值.

  1. <?php 
  2. function city_name($city = "beijing"
  3.     echo "城市名称为:".$city
  4. $name = "shanghai"
  5. city_name();    //执行结果是输出“城市名称为:beijing” 
  6. city_name($name);    //执行结果是输出“城市名称为:shanghai” 
  7. ?> 
波比源码 – 精品源码模版分享 | www.bobi11.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站源码并不保证全部能正常使用,仅供有技术基础的人学习研究,请谨慎下载
8. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!

波比源码 » PHP 函数之自定义函数介绍

144 评论

  1. order tadalis generic avana online order diclofenac without prescription

  2. indomethacin 50mg drug lamisil order cheap amoxicillin 250mg

  3. order generic prednisone 5mg usa pharmacy sildenafil 100mg tablets

  4. order altace 10mg sale irbesartan pills azelastine 10ml over the counter

  5. brand imuran 100 mcg sildenafil 25mg buy sildenafil tablets

  6. isotretinoin online order amoxil price buy deltasone 40mg online

  7. order prednisone 20mg without prescription deltasone 10mg usa order vermox pill

  8. Thank you great posting about essential oil. Hello Administ . Metropol Halı Karaca Halı Öztekin ve Selçuklu Halı Cami Halısı ve Cami Halıları Türkiye’nin En Büyük Cami Halısı Fabrikasıyız…

  9. Thank you great post. Hello Administ . Metropol Halı Karaca Halı Öztekin ve Selçuklu Halı Cami Halısı ve Cami Halıları Türkiye’nin En Büyük Cami Halısı Fabrikasıyız…

  10. oral tadalafil 5mg Cialis visa viagra australia

  11. After all, what a great site and informative posts, I will upload inbound link – bookmark this web site? Regards, Reader.

  12. doxycycline pills oral vardenafil zovirax 400mg over the counter

  13. essay correction service buying essays cheap essay writer service

  14. college thesis what is a thesis what is the thesis statement of an essay

  15. levaquin 250mg without prescription order urso pills bupropion order online

  16. milltown pharmacy randalls pharmacy pharmacy technician license vs certification

  17. buy femara 2.5mg online sildenafil 100 mg sildenafil 100mg pills for sale

  18. buy cialis canada real viagra pills how to get ed pills without a prescription

  19. Hi, just required you to know I he added your site to my Google bookmarks due to your layout. But seriously, I believe your internet site has 1 in the freshest theme I??ve came across. Hacklink Panel Hacklink

  20. buy duricef paypal proscar 5mg drug order finasteride 1mg online cheap

  21. estrace online lamictal uk prazosin 2mg tablet

  22. metronidazole buy online buy keflex 250mg buy cephalexin 500mg online cheap

  23. indocin drug indocin oral oral suprax 200mg

  24. buy carvedilol 6.25mg for sale brand carvedilol chloroquine online order

发表评论

Hi, 如果你对这款模板有疑问,可以跟我联系哦!

联系站长
赞助VIP 享更多特权,建议使用 QQ 登录
喜欢我嘛?喜欢就按“ctrl+D”收藏我吧!♡