欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP函数参数传递方法的具体改进技巧分享

程序员文章站 2022-05-25 11:42:53
...
当我们在写本人在经历了多次重复操作之后决定改进一下传统PHP函数参数传递方法,使用数组作为参数,请看下面的例子.

先看一个传统的自定义函数

  1. /**
  2. * @Purpose: 插入文本域
  3. * @Method Name: addInput()
  4. * @Parameter: str $title 表单项标题
  5. * @Parameter: str $name 元素名称
  6. * @Parameter: str $value 默认值
  7. * @Parameter: str $type 类型,默认为text,可选password
  8. * @Parameter: str $maxlength 最长输入
  9. * @Parameter: str $readonly 只读
  10. * @Parameter: str $required 是否必填,默认为false,true为必填
  11. * @Parameter: str $check 表单验证function(js)名称
  12. * @Parameter: str $id 元素id,无特殊需要时省略
  13. * @Parameter: int $width 元素宽度,单位:象素
  14. * @Parameter: str $tip 元素提示信息
  15. * @Return:
  16. */
  17. function addInput($title,$name,$value="",$type="text",$maxlength="255",
    $readonly,$
    required="false",$check,$id,$width,$tip)