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