C で書かれ、PHP 拡張機能として構築された 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
に設定する必要があります。これにより、ユーザーはパブリック フォルダーのみにアクセスできるようになります。
パブリックディレクトリの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 は、PHP で記述されたビュー テンプレートをサポートする「Yaf_View_Simple」と呼ばれるシンプルなビュー エンジンを提供します。
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