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

WBOY
Release: 2016-06-13 11:23:10
Original
856 people have browsed it

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


------解决方案--------------------
对象支持可变
------解决方案--------------------
可变变量是这么用得吗?
class obj{<br />    public $test='测试';<br />  }<br /> <br />  $obj2=new obj;<br />  $obj3="obj2";<br />  var_dump($$obj3->test);  
Copy after login
string(4) "测试"
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template