我想在Magento CMS Pages中包含外部PHP脚本
e.g。
**http://myhost/magento/custom/script.php**
<?php echo "hello"; ?>
Magento页面的结果应为:“hello
”
最简单的方法是什么?
答案 0 :(得分:8)
最好的方法可能是通过Layout Update XML部分(在设计选项卡上)。您可以为模板php文件创建新块,也可以使用Mage_Core_Block_Template
。加上这个:
<reference name="content">
<block type="core/template" name="my_template" template="pat/to/your/template" after="cms_page" />
</reference>
答案 1 :(得分:4)
OR
您可以使用花括号语法来包含.phtml文件,您可以在其中编写PHP代码:
{{block type="core/template" name="my-template" template="path/to/your/template.phtml"}}
由于