Magento 1.9.3 doesn’t run with PHP 7, it will show error like below:
Fatal error: Uncaught Error: Function name must be a string in appcodecoreMageCoreModelLayout.php
Find the below line in app/code/core/Mage/Core/Model/Layout.php file (line: 555)
$out .= $this->getBlock($callback[0])->$callback[1]();
And Replace it with below line:
$out .= $this->getBlock($callback[0])->{$callback[1]}();

