$name;function hello(){echo "hello word";}大概意思就是上面的代码请问下有什么方法可以达到这个效果就是想根据变量的值,不加判断直接调用对应的方法------解决方案-----------"/> $name;function hello(){echo "hello word";}大概意思就是上面的代码请问下有什么方法可以达到这个效果就是想根据变量的值,不加判断直接调用对应的方法------解决方案-----------">

ホームページ  >  記事  >  バックエンド開発  >  变量可以作为方法名吗?该怎么处理

变量可以作为方法名吗?该怎么处理

WBOY
WBOYオリジナル
2016-06-13 10:26:14905ブラウズ

变量可以作为方法名吗?

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$name="hello()";$this->$name;function hello(){echo "hello word";}

大概意思就是上面的代码
请问下有什么方法可以达到这个效果
就是想根据变量的值,不加判断直接调用对应的方法

------解决方案--------------------
PHP code
$name="hello";$name();function hello(){echo "hello word";}<br><font color="#e78608">------解决方案--------------------</font><br>$name="hello()";<br>eval("return $name;");<br><br>function hello(){<br>echo "hello word";<br>}<div class="clear">
                 
              
              
        
            </div>
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。