如何在不应用模板的情况下在zen-cart中创建新的空白页面。 我想创建一个只生成JSON数据的页面......
提前致谢
答案 0 :(得分:2)
在商店目录中创建一个php文件。在该文件中,如果您想使用ZenCart函数,可以包含它们,如下所示:
<?php
include "includes/application_top.php";
set headers for mime type
set headers for not caching
YOUR CODE
echo $json;
// below is optional if you didn't create/edit session
include "includes/application_bottom.php";