博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP 三种方式实现链式操作
阅读量:6227 次
发布时间:2019-06-21

本文共 1281 字,大约阅读时间需要 4 分钟。

在php中有很多字符串函数,例如要先过滤字符串收尾的空格,再求出其长度,一般的写法是:

strlen(trim($str))

如果要实现类似js中的链式操作,比如像下面这样应该怎么写?

$str->trim()->strlen()

下面分别用三种方式来实现:

方法一、使用魔法函数__call结合call_user_func来实现

思想:首先定义一个字符串类StringHelper,构造函数直接赋值value,然后链式调用trim()strlen()函数,通过在调用的魔法函数__call()中使用call_user_func来处理调用关系,实现如下:

value = $value; } function __call($function, $args){ $this->value = call_user_func($function, $this->value, $args[0]); return $this; } function strlen() { return strlen($this->value); }}$str = new StringHelper(" sd f 0");echo $str->trim('0')->strlen();

终端执行脚本:

php test.php 8

方法二、使用魔法函数__call结合call_user_func_array来实现

value = $value; } function __call($function, $args){ array_unshift($args, $this->value); $this->value = call_user_func_array($function, $args); return $this; } function strlen() { return strlen($this->value); }}$str = new StringHelper(" sd f 0");echo $str->trim('0')->strlen();

说明:

array_unshift(array,value1,value2,value3...)

array_unshift() 函数用于向数组插入新元素。新数组的值将被插入到数组的开头。

call_user_func()call_user_func_array都是动态调用函数的方法,区别在于参数的传递方式不同。

方法三、不使用魔法函数__call来实现

只需要修改_call()trim()函数即可:

public function trim($t){    $this->value = trim($this->value, $t);    return $this;}

重点在于,返回$this指针,方便调用后者函数。

转载地址:http://honna.baihongyu.com/

你可能感兴趣的文章
osharp3引入事务后操作结果类别的调整
查看>>
[ZigBee] 6、ZigBee基础实验——定时器3和定时器4(8 位定时器)
查看>>
Jquery操作cookie
查看>>
Atitit 基于meta的orm,提升加速数据库相关应用的开发
查看>>
Spring:ApplicationContext (2)
查看>>
数据记录筛选
查看>>
windows 10专业版14393.447 64位纯净无广告版系统 基于官方稳定版1607制作 更新于20161112...
查看>>
Python正则表达式学习摘要及资料
查看>>
C++项目中的extern "C" {}
查看>>
Oozie分布式任务的工作流——脚本篇
查看>>
python的分布式爬虫框架
查看>>
Unity3D研究院之使用Animation编辑器编辑动画
查看>>
编译时常量与运行时常量
查看>>
深究JS异步编程模型
查看>>
深度学习常见算法之训练自己的数据
查看>>
Visual Studio2015使用tinyfox2.x作为Owin Host调试教程
查看>>
中国的支付清算体系是怎么玩的?
查看>>
[工具] 全文检索工具推荐
查看>>
java取整和java四舍五入方法 BigDecimal.setScale()方法详解
查看>>
Spring boot中使用springfox来生成Swagger Specification小结
查看>>