我对以下代码行有疑问:
$this->$option['type']($option);
此行摘自以下部分
function render()
{
echo '<div class="wrap theme-settings-page">';
foreach($this->options as $option)
{
if (method_exists($this, $option['type'])) {
$this->$option['type']($option);
}
}
如何更改/更新此代码行以符合PHP 7?
在此先感谢您的帮助。 你的 斯蒂芬