PHP小技巧之函数重载
发布:smiling 来源: PHP粉丝网 添加日期:2021-01-31 18:31:34 浏览: 评论:0
php 作为一种弱类型语言,本身不能像强类型如java ,c++那样,直接的实现重载。不过可以通过一些方法,间接的实现重载。
1.可以使用func_get_args()和func_num_args()这两个函数实现函数的重载!!
PHP代码:
- function rewrite() {
- $args = func_get_args();
- if(func_num_args() == 1) {
- func1($args[0]);
- } else if(func_num_args() == 2) {
- func2($args[0], $args[1]);
- }
- }
- function func1($arg) {
- echo $arg;
- }
- function func2($arg1, $arg2) {
- echo $arg1, ' ', $arg2;
- }
- rewrite('PHP'); //调用func1
- rewrite('PHP','China'); //调用func2
2.使用默认值,从而根据输入,得到自己想要的结果:
- function test($name="小李",$age="23"){
- echo $name." ".$age;
- }
- test();
- echo "<br/>";
- test("a");
- echo "<br/>";
- test("a","b");
Tags: PHP函数重载
相关文章
- ·php函数重载的替代方法--伪重载详解(2021-05-25)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)