php 类中方法之间参数怎么调用 ?

2024-12-02 09:05:35
推荐回答(5个)
回答1:

  1. class A
    {
      public $bb,$cc;
    function othersomething()
    {
          return $this->cc;
    }
    }

    function dosomething()
     {
      $bb = $this->bb;
      $othersomething = $this->othersomething();
      }

    方法的参数是新定义一个变量,注意是新定义,方法结束自动销毁,

2.PHP类中方法定义的参数与调用时的参数名称可以不同。

 带默认值的就是指当这些参数没有给出的时候可以按照预定义内容进行赋值(按参数顺序调用)。

function text($i, $a = "test1", $test = "test2"){

 echo "

{$i}

";

 echo "

{$a}

";

 echo "

{$test}

";

 }

 

2.调用:

text("test");

----显示

test

 test1

 test2

 

 text("test","test3","test4");

----显示

test

 test3

 test4

回答2:

第一php网提供的教程




class myclass{
public function aaa(){
return $one = "one";
}

public function bbb(){
echo $this->aaa();
}
}
$my= new myclass();
$my->bbb();
?>

回答3:

那个不能调用方法中的参数,只能将这个参数设置成类的成员变量就可以调用了。

回答4:

最好定义一个$one 变量,通过 aaa 方法复制,在bbb方法中 直接 $this->one,或者直接在aaa()方法中 return $one,如何调用aaa 方法

回答5:

class  myclass{
    public $one;
    public function aaa(){
        $this->one = "one";
    }

    public function bbb(){
        echo $this->one;

    }

}