为了账号安全,请及时绑定邮箱和手机立即绑定

【PHP】return $this

【PHP】return $this

蛊毒传说 2019-04-21 20:41:22
Laravel里很多return$this着实不明白这是什么原理,百度后发现如下比较好的解释:classsum{private$num1;private$num2;publicfunctionnum1($n){$this->num1=$n;return$this;}publicfunctionnum2($n){$this->num2=$n;return$this;}publicfunctionsum(){return$this->num1+$this->num2;}}$sum=newsum();$sum->num1(10)->num2(5)->sum();三个疑问:1、既然num1和num2的设计初衷是方法,为什么开头却要变成它的属性私有呢?private$num1;private$num2;...num1($n)...num2($n)2、$this->num1=$n自身的参数值($n)赋值给自身的方法($num1),这是什么原理?有什么用呢?3、return$this这什么技巧,在larval里利用率太高了,脑子转不过来。可能深夜了,问题太多,脑子很糊,谢谢解答,为感!睡醒再来看来,真的摸索不出来
查看完整描述

2 回答

?
万千封印

TA贡献1891条经验 获得超3个赞

链式操作,具体应用场景像这样
/*
*SQL语句组合实例类,始发文章web开发笔记
*学习用,非专业类
**/
classsql{
private$sql=array("from"=>"",
"where"=>"",
"order"=>"",
"limit"=>"");
publicfunctionfrom($tableName){
$this->sql["from"]="FROM".$tableName;
return$this;
}
publicfunctionwhere($_where='1=1'){
$this->sql["where"]="WHERE".$_where;
return$this;
}
publicfunctionorder($_order='idDESC'){
$this->sql["order"]="ORDERBY".$_order;
return$this;
}
publicfunctionlimit($_limit='30'){
$this->sql["limit"]="LIMIT0,".$_limit;
return$this;
}
publicfunctionselect($_select='*'){
return"SELECT".$_select."".(implode("",$this->sql));
}
}
$sql=newsql();
echo$sql->from("testTable")->where("id=1")->order("idDESC")->limit(10)->select();
//输出SELECT*FROMtestTableWHEREid=1ORDERBYidDESCLIMIT0,10
                            
查看完整回答
反对 回复 2019-04-21
?
SMILET

TA贡献1796条经验 获得超4个赞

1、属性设计为私有是防止外部直接通过属性赋值来修改其值。只有通过暴露的公用方法来赋值。
2、对类的属性进行赋值操作。
3、实现环形调用。$sum->num1(10)对$sum对象的num1进行赋值,执行完成后返回结果是当前$sum对象,然后再调用num2(5)方法对num2进行复制,同时返回当前的$sum对象,最后调用$sum对象的sum方法。
                            
查看完整回答
反对 回复 2019-04-21
  • 2 回答
  • 0 关注
  • 323 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信