yaf
1.0.0
PHP 框架以 C 語言編寫並建構為 PHP 擴充功能。
Yaf 是一個 PECL 擴展,因此您可以簡單地透過以下方式安裝它:
$pecl install yaf
$/path/to/phpize
$./configure --with-php-config=/path/to/php-config
$make && make install
Yaf 手冊可在以下位置找到:http://www.php.net/manual/en/book.yaf.php
efnet.org #php.yaf
您可以在這裡找到記錄的原型腳本:https://github.com/elad-yosifon/php-yaf-doc
經典的應用程式目錄佈局:
- .htaccess // Rewrite rules
+ public
| - index.php // Application entry
| + css
| + js
| + img
+ conf
| - application.ini // Configure
- application/
- Bootstrap.php // Bootstrap
+ controllers
- Index.php // Default controller
+ views
|+ index
- index.phtml // View template for default controller
+ library // libraries
+ models // Models
+ plugins // Plugins
您應該將DocumentRoot
設定為application/public
,這樣使用者只能存取 public 資料夾
public目錄中的index.php
是應用程式的唯一入口,你應該重寫所有對它的請求(你可以在Apache+php mod中使用.htaccess
)
define ( " APPLICATION_PATH " , dirname ( dirname ( __FILE__ )));
$ app = new Yaf_Application ( APPLICATION_PATH . " /conf/application.ini " );
$ app -> bootstrap () //call bootstrap methods defined in Bootstrap.php
-> run ();
#.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
server {
listen ****;
server_name domain.com;
root document_root;
index index.php index.html index.htm;
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
}
$HTTP["host"] =~ "(www.)?domain.com$" {
url.rewrite = (
"^/(.+)/?$" => "/index.php/$1",
)
}
application.ini
是應用程式設定檔
[product]
; CONSTANTS is supported
application.directory = APPLICATION_PATH " /application/ "
或者,您可以使用 PHP 陣列:
$ config = array (
" application " => array (
" directory " => application_path . " /application/ " ,
),
);
$ app = new yaf_application ( $ config );
. . . .
在 Yaf 中,預設控制器名稱為IndexController
:
class IndexController extends Yaf_Controller_Abstract {
// default action name
public function indexAction () {
$ this -> getView ()-> content = " Hello World " ;
}
}
?>
預設控制器和預設操作的視圖腳本位於 application/views/index/index.phtml 中,Yaf 提供了一個名為「Yaf_View_Simple」的簡單視圖引擎,它支援用 PHP 編寫的視圖模板。
Hello World
echo $ content ; ?>
http://www.example.com
您可以使用 Yaf 程式碼產生器產生上面的範例:https://github.com/laruence/php-yaf/tree/master/tools/cg
./yaf_cg -d output_directory [-a application_name] [--namespace]
更多資訊可以在 Yaf 手冊中找到:http://www.php.net/manual/en/book.yaf.php