Exemples

Exemple #1 Une architecture classique d'une application

- index.php 
- .htaccess 
+ conf
  |- application.ini //configuration de l'application
- application/
  - Bootstrap.php   
  + controllers
     - Index.php // contrôleur par défaut
  + views    
     |+ index   
        - index.phtml //template d'affichage pour l'action par défaut
  + modules 
  - library
  - models  
  - plugins 

Exemple #2 Entry

index.php dans le premier dossier est le seul point d'entrée de votre application ; vous devez re-diriger toutes les requêtes vers ce fichier. (Vous pouvez utiliser un fichier .htaccess avec Apache + php_mod.)

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

$app = new Yaf_Application(APPLICATION_PATH . "/conf/application.ini");
$app->bootstrap() //appel des méthodes bootstrap définies dans le fichier Bootstrap.php
->run();
?>

Exemple #3 Règle de ré-écriture des requêtes

#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",
  )
}

Exemple #4 Configuration de l'application

[yaf]
;APPLICATION_PATH est la constante définie dans index.php
application.directory=APPLICATION_PATH "/application/" 

;section de production héritée de la section yaf
[product:yaf]
foo=bar

Exemple #5 Controlleur par défaut

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

Exemple #6 Template de rendu par défaut

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

Exemple #7 Exécution de l'application

Résultat de l'exemple ci-dessus est similaire à :

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

Note:

vous pouvez aussi générer l'exemple ci-dessus en utilisant un générateur de code Yaf, qui peut être trouvé sur yaf@github.

add a note

User Contributed Notes 9 notes

up
6
498936940 at qq dot com
7 years ago
YAF based on the actual case:Hooks、Event、Modules、Plugins、Multiple templates、Multiple languages、SQL Centralized Management...Support Electric Business Platform、OA、ERP、IaaS、PaaS、SaaS、Blog、Cms...Common features required by any platform: User、Acl、Menu...https://github.com/letwang/HookPHP
up
5
fatih dot akgun at hotmail dot be
10 years ago
Alternativeyou can generate the example above by using Yaf Code Generator: https://github.com/laruence/php-yaf/tree/master/tools/cg
up
0
498936940 at qq dot com
4 years ago
PHP8 Yaf3.3.3 按照官网配置 导致Nginx死循环:rewrite or internal redirection cycle while processing "/index.phpindex.phpindex.......解决:Example #3 Rewrite rule#for nginxserver {  listen ****;  server_name  domain.com;  root   document_root;  index  index.php index.html index.htm;  if (!-e $request_filename) {    rewrite ^/(.*)  /index.php?$1 last;  }}唯一的变化,是 多出1个 ?问号
up
0
YangQingRong at wudimei dot com
5 years ago
nginx重写不知为什么死循环rewrite ^/(.*)  /index.php/$1 last;/index.php/index.php/index.php/index.php/index.php/index.php/index.php/index.php/Index后来我改成查询字符串就解决了。location / {                        index index.php index.html index.htm;            if (!-e $request_filename){                rewrite ^/(.*)$ /index.php?_path_info=/$1 last;            }         }在index.php中,把query string "_path_info" 放到$_SERVER变量中。<?phpini_set("display_errors",true);error_reporting(E_ALL|E_ERROR);//print_r($_SERVER);$_SERVER['PATH_INFO']=@$_GET['_path_info']; //加这一行,yaf只认PATH_INFOdefine("APPLICATION_PATH",dirname(__DIR__));$app = new Yaf\Application(APPLICATION_PATH.'/conf/application.ini');$app->bootstrap()->run();?>
up
0
yeszao at qq dot com
9 years ago
I success in "application" directory set to:- application/  - Bootstrap.php     + modules     + Index      + controllers         - Index.php         //default controller      + views             |+ index            - index.phtml   //view template for default action  - library  - models    - plugins And Bootstrap.php should be enter at least 3 line like these:<?phpclass Bootstrap extends Yaf_Bootstrap_Abstract {}
up
0
zhaozhi406 at 163 dot com
9 years ago
the nginx rewrite rule should be:if (!-e $request_filename) {       rewrite ^/(.*)  /index.php?$1 last;}
up
-1
Li Min
11 years ago
http://us3.php.net/manual/zh/yaf.tutorials.phpLost default Bootstrap.php <?php   /* bootstrap class should be defined under ./application/Bootstrap.php */   class Bootstrap extends Yaf_Bootstrap_Abstract {        public function _initConfig(Yaf_Dispatcher $dispatcher) {            var_dump(__METHOD__);        }        public function _initPlugin(Yaf_Dispatcher $dispatcher) {            var_dump(__METHOD__);        }   }
up
-1
jshawcx at gmail dot com
10 years ago
use  nginx  and php-fpm   you can   config:    location / {        try_files $uri    $uri/    /index.php$is_args$args;        }        location ~ \.php$ {                fastcgi_pass   127.0.0.1:9000;               #fastcgi_pass unix:/tmp/php-cgi.sock;                fastcgi_index  index.php;            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        include        fastcgi_params;        }
up
-1
YangQingRong at wudimei dot com
5 years ago
nginx重写不知为什么死循环rewrite ^/(.*)  /index.php/$1 last;/index.php/index.php/index.php/index.php/index.php/index.php/index.php/index.php/Index后来我改成查询字符串就解决了。location / {                        index index.php index.html index.htm;            if (!-e $request_filename){                rewrite ^/(.*)$ /index.php?_path_info=/$1 last;            }         }在index.php中,把query string "_path_info" 放到$_SERVER变量中。<?phpini_set("display_errors",true);error_reporting(E_ALL|E_ERROR);//print_r($_SERVER);$_SERVER['PATH_INFO']=@$_GET['_path_info']; //加这一行,yaf只认PATH_INFOdefine("APPLICATION_PATH",dirname(__DIR__));$app = new Yaf\Application(APPLICATION_PATH.'/conf/application.ini');$app->bootstrap()->run();?>
To Top