我看到了这段代码

if (is_null($$textVarName)) {
$$textVarName = $_defaultTexts[$type];
}

什么是代码“$$”?

最佳答案

这是邪恶的。

这将采用$textVarName中的值并将其用作变量名。例如:

$foo = 'hello';
$hello = 'The Output';
echo $$foo; // displays "The Output"

10-07 14:01