magento1.9在PHP7版本出现的错误:PHP Fatal error: Uncaught Error: Function name must be a string in /app/code/core/Mage/Core/Model/Layout.php, 找到 getOutput函数,把
$out .= $this->getBlock($callback[0])->$callback[1]();
改成
$fname=$callback[1];
$out.=$this->getBlock($callback[0])->$fname();
这是由于PHP7对一这旧语法的不支持。