Home  >  Article  >  Backend Development  >  怎么给类中的属性赋值?

怎么给类中的属性赋值?

WBOY
WBOYOriginal
2016-06-06 20:24:232629browse

class a{
public $x = $b;
return $x;
}

$q="asdffg";
$z=new a();


怎么给a类中的$b,赋值$q的内容呢?

回复内容:

class a{
public $x = $b;
return $x;
}

$q="asdffg";
$z=new a();


怎么给a类中的$b,赋值$q的内容呢?

<code>$z->b = $q</code>
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