PHP函数参数传递方法的具体改进技巧分享
程序员文章站
2022-05-25 11:42:53
...
当我们在写本人在经历了多次重复操作之后决定改进一下传统PHP函数参数传递方法,使用数组作为参数,请看下面的例子.
先看一个传统的自定义函数
- /**
- * @Purpose: 插入文本域
- * @Method Name: addInput()
- * @Parameter: str $title 表单项标题
- * @Parameter: str $name 元素名称
- * @Parameter: str $value 默认值
- * @Parameter: str $type 类型,默认为text,可选password
- * @Parameter: str $maxlength 最长输入
- * @Parameter: str $readonly 只读
- * @Parameter: str $required 是否必填,默认为false,true为必填
- * @Parameter: str $check 表单验证function(js)名称
- * @Parameter: str $id 元素id,无特殊需要时省略
- * @Parameter: int $width 元素宽度,单位:象素
- * @Parameter: str $tip 元素提示信息
- * @Return:
- */
- function addInput($title,$name,$value="",$type="text",$maxlength="255",
$readonly,$required="false",$check,$id,$width,$tip)
上一篇: 算法:回溯法与八皇后问题
下一篇: 《CSS3实战》笔记--渐变设计(一)