Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题在这里有点解决问题。就我而言,我想调用类似empty()or的函数is_int()。例如:
empty()
is_int()
<?php $foo = 'empty'; $test = NULL; $foo($test);
这个问题不是重复的:
如何从存储在变量中的字符串调用 PHP 函数
我的问题解决了原生 PHP 函数而不是用户制作的函数。
变量函数不适用于语言结构,您可以在手册中阅读:
变量函数不适用于 echo、print、unset()、isset()、empty()、include、require 等语言结构。利用包装函数将这些结构中的任何一个用作变量函数。