Home  >  Article  >  Backend Development  >  对象支持可变吗?解决思路

对象支持可变吗?解决思路

WBOY
WBOYOriginal
2016-06-13 11:23:10855browse

对象支持可变吗?
如题:对象支持可变吗?


------解决方案--------------------
对象支持可变
------解决方案--------------------
可变变量是这么用得吗?
class obj{<br />    public $test='测试';<br />  }<br /> <br />  $obj2=new obj;<br />  $obj3="obj2";<br />  var_dump($$obj3->test);  
string(4) "测试"
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