如何修复“通知:未定义的变量”错误

时间:2019-04-02 09:05:59

标签: php html debugging

我正在查看我的“ WP_DEBUG”错误,并且以下两个错误/通知在许多PHP文件中弹出:

注意:未定义的变量:...中的defaultUI。
注意:未定义的变量:...中的compileShortcodeUI。

我已经检查了所有PHP文件和所有行,并且其中每一个都引用了相同的代码:

$compileShortcodeUI .= "<div class='whatInsert whatInsert_".$shortcodeName."'>".$defaultUI."</div>";

要删除这些错误,我需要更改什么?

1 个答案:

答案 0 :(得分:2)

您必须首先定义变量。

$compileShortcodeUI = ''; // null or any default value
$defaultUI = ''; // null or any default value
$compileShortcodeUI .= "<div class='whatInsert whatInsert_".$shortcodeName."'>".$defaultUI."</div>";