Home  >  Article  >  Backend Development  >  PHP里同一个类里的两个方法可以相互调用吗?

PHP里同一个类里的两个方法可以相互调用吗?

WBOY
WBOYOriginal
2016-06-23 13:22:421828browse

求解啊、、、、、、、、、、、


回复讨论(解决方案)

当然是可以的

可别死循环了啊。

当然是可以的

怎么掉啊?  我今天调用的时候 说出现Call to undefined function、、、

贴代码,你调的方式有问题

贴代码,你调的方式有问题

public function execute_dql_fenye($sql1,$sql2,$fenyePage){}public function abc(){execute_dql_fenye(&$sql1,&$sql2,&$fenyePage);}

public function execute_dql_fenye($sql1,$sql2,$fenyePage){
 
}
public function abc(){
   $this->execute_dql_fenye(&$sql1,&$sql2,&$fenyePage);
}

public function execute_dql_fenye($sql1,$sql2,$fenyePage){
 
}
public function abc(){
  $this->execute_dql_fenye(&$sql1,&$sql2,&$fenyePage);
}


嗯 嗯、、、我说怎么没成功   我方法体里的内容 有错的、、、    谢谢了  大神、、、

正解……变量也是如此

比如方法A和B同属于一个类C, A调用B:

class C{
function B(){
return 1;
}
function A(){
$result=self::B();
}
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn