Entschuldigung, dieses $this ——》Wie tippt man das danach ein? Was ist es?
有人回答了作用我就回答下怎么打吧。。。这个好简单的。非输入法模式下主键盘0右边+号左边那个-号,加上?号键左边的>号,这个>要按住shift键才打的出来。 切换输入法模式和字母输入模式按一下shift就能切换了。
首先你要理解$this是什么,他的作用是什么?
$this是指向当前对象的指针,说白了就是指的前的对象的意思,这能才能实现比如说类的属性方法调用等
$this->某某方法。
例如
class man{
function test1(){
$this->test2();
}
function test2(){
echo "hello";
$m = new man();
$m->test1();
//输出:hello;
有人回答了作用我就回答下怎么打吧。。。这个好简单的。非输入法模式下主键盘0右边+号左边那个-号,加上?号键左边的>号,这个>要按住shift键才打的出来。 切换输入法模式和字母输入模式按一下shift就能切换了。
首先你要理解$this是什么,他的作用是什么?
$this是指向当前对象的指针,说白了就是指的前的对象的意思,这能才能实现比如说类的属性方法调用等
$this->某某方法。
例如
class man{
function test1(){
$this->test2();
}
function test2(){
echo "hello";
}
}
$m = new man();
$m->test1();
//输出:hello;