我刚刚得到了一些使用类似框架的PHP项目,但我无法分辨哪一个。我以前经历过一些Code Igniter,Django和Rails,但我无法确定具体的框架。我正在浏览PHP文件以查找其来源的任何迹象,但它们似乎已被消灭。我正在帮助的人对编程没有任何线索,所以他无法告诉我他们来自哪里。它具有以下项目helloworld的目录结构:
helloworld/
.htaccess
index.php
modules/
hi/
hi.php
home.php
system/
conf.inc.php
functions/
theme/
default/
images/
js/
templates/
home.tpl
对于上述内容,似乎Controller代码位于modules文件夹下。有人也可以告诉我哪个PHP模板引擎用于以下语法?模板在Controller代码(home.php)中访问,如下所示:
$tpl = new template;
$tpl -> Load("!theme/{$GLOBALS["THEME"]}/templates/home.tpl");
$tpl -> GetObjects();
// more PHP codes here
$tpl -> CleanZones();
$tpl -> Flush();
示例查看代码:
<base href="{siteURL}/" target="_self" />
我不确定上面是自制程序,现有框架的自定义版本还是许多PHP框架之一的未修改版本。