Home  >  Article  >  Backend Development  >  小弟我可以用一个类类型去另一个类中声明跟定义变量吗

小弟我可以用一个类类型去另一个类中声明跟定义变量吗

WBOY
WBOYOriginal
2016-06-13 12:20:42897browse

我可以用一个类类型去另一个类中声明跟定义变量吗?
我自己试了一下,不行啊,要怎么弄?
------解决思路----------------------
楼主说的是这样吗
class aa{
public $name;
}

class bb{
function testaa(aa $a){
$a->age=333;
}
}

$aa=new aa();
$bb=new bb();

$bb->testaa($aa);

echo $aa->age;

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