Blogger Information
Blog 263
fans 3
comment 2
visits 113344
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
类的使用技巧
福哥的博客
Original
748 people have browsed it
<?php
class Foo{
    function varr(){
        $name='bar';
        $this->$name;//调用Bar方法
    }
    function bar(){
        echo 'i am a bar';
    }
}
$foo=new Foo();
$funcname='varr';
$foo->$funcname();//调用varr方法--varr方法再调用bar方法,输出为 i ma a bar.
?>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post