0
我剛剛得到了一些使用類似框架的PHP項目,但我不知道哪一個。我曾經經歷過一些Code Igniter,Django和Rails,但我無法確定這個特定的框架。我正在瀏覽PHP文件以查看其起源的任何跡象,但它們似乎已被清除。我所幫助的人對編程毫無頭緒,所以他不能告訴我他們來自哪裏。它具有以下項目helloworld的目錄結構:可以識別這個PHP框架嗎?
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模板引擎正在用於下面的語法嗎?
$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" />
我不知道,如果上面是自制,定製版的模板是控制器代碼(home.php)像下面的訪問一個現有的框架或一個沒有修改過的PHP框架之一。
感謝,從長遠來看,你覺得這是值得保持代碼周圍或切換到一個更支持的框架? – 2009-06-20 13:15:07