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.
我继承了一些代码并试图理解这一点。我唯一一次看到这样的语法(将一些东西放在变量旁边的括号中)是在类型转换中。我还看不到 $var2 的任何实例(可能在某个地方调用该函数的脚本中)。这可能是什么?
这是我在代码中看到的:
$var1 = $arrayName['element']($var2);
它正在从数组中调用一个函数。它以带有函数名称的字符串形式存储在数组中,或者函数本身存储在其中。