博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php链式操作实现四则链式运算
阅读量:6414 次
发布时间:2019-06-23

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

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

Operation.php

number = $number; } public function add($number) { $this->number += $number; return $this; } public function decrease($number) { $this->number -= $number; return $this; } public function multiply($number) { $this->number *= $number; return $this; } public function division($number) { $this->number /= $number; return $this; } public function get() { return $this->number; }}

index.php

require __DIR__ . '/IMooc/Operation.php';$operation = new IMooc\Operation(10);$result = $operation->add(2)->decrease(2)    ->multiply(3)->division(4)    ->get();var_dump($result);

执行结果

masaki@masaki-Inspiron:/var/www/imooc$ php index.php
float(7.5)

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

你可能感兴趣的文章
我的友情链接
查看>>
Django XSS***
查看>>
NAS之mysql高可用解决方案
查看>>
FastDFS使用实战
查看>>
Mysql并发控制
查看>>
软件界面的美观性及易用性方面的用例
查看>>
远程管理工具命令应用
查看>>
算法总结
查看>>
struts2 counter循环标签在分页中的使用
查看>>
ospf
查看>>
使用vsftpd服务传输文件(匿名用户认证、本地用户认证、虚拟用户认证)
查看>>
Centos下使用系统镜像ISO作为yum源
查看>>
ASP.NET MVC中三方登录: 微软、谷歌、Office365
查看>>
使用Xshell连接远程CentOS服务器
查看>>
2.DHCP服务
查看>>
「实战篇」开源项目docker化运维部署-开篇(一)
查看>>
Oracle 实验 --- 撤销具有GRANT OPTION 的对象权限
查看>>
DNS设定(一)
查看>>
2018年为什么要学习Python?Python还有前景吗?
查看>>
solrcloud 部署方式比较 和 solrCloud+tomcat+zookeeper集群配置
查看>>