范例

示例 #1 一個(gè)典型的應(yīng)用目錄結(jié)構(gòu)

- index.php
- .htaccess
+ conf
  |- application.ini //application config
- application/
  - Bootstrap.php
  + controllers
     - Index.php //default controller
  + views
     |+ index
        - index.phtml //view template for default action
  + modules
  - library
  - models
  - plugins

示例 #2 入口文件

頂層目錄下的 index.php 是整個(gè)應(yīng)用的唯一入口,應(yīng)該把所有請(qǐng)求都重定向到這個(gè)文件(在 Apache + php_mod 模式下可以使用 .htaccess)。

<?php
define
("APPLICATION_PATH",  dirname(__FILE__));

$app  = new Yaf_Application(APPLICATION_PATH "/conf/application.ini");
$app->bootstrap() //call bootstrap methods defined in Bootstrap.php
 
->run();
?>

示例 #3 重寫規(guī)則

#for apache (.htaccess)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php

#for nginx
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;
  }
}

#for lighttpd
$HTTP["host"] =~ "(www.)?domain.com$" {
  url.rewrite = (
     "^/(.+)/?$"  => "/index.php/$1",
  )
}

示例 #4 應(yīng)用配置文件

[yaf]
;APPLICATION_PATH is the constant defined in index.php
application.directory=APPLICATION_PATH "/application/"

;product section inherit from yaf section
[product:yaf]
foo=bar

示例 #5 默認(rèn)控制器

<?php
class IndexController extends Yaf_Controller_Abstract {
   
/* default action */
   
public function indexAction() {
       
$this->_view->word "hello world";
       
//or
       // $this->getView()->word = "hello world";
   
}
}
?>

示例 #6 默認(rèn)視圖文件

<html>
 <head>
   <title>Hello World</title>
 </head>
 <body>
   <?php echo $word;?>
 </body>
</html>

示例 #7 運(yùn)行應(yīng)用

以上例程的輸出類似于:

<html>
 <head>
   <title>Hello World</title>
 </head>
 <body>
   hello world
 </body>
</html>

注意:

在 yaf@github 上有 Yaf 代碼生成器,你也可以用它來(lái)生成上面的例子。