基于实际案例的 YAF:Hooks、Event、Modules、Plugins、多个模板、多种语言、SQL 集中管理...
支持电子商务平台、OA、ERP、IaaS、PaaS、SaaS、博客、CMS...
任何平台都需要的一些通用功能:用户、ACL、菜单...
https://github.com/letwang/HookPHP
示例 #1 典型的应用程序目录布局
- 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 是应用程序唯一的入口,您应该将所有请求重写到它。(您可以在 Apache + php_mod 中使用 .htaccess)
<?php
define("APPLICATION_PATH", dirname(__FILE__));
$app = new Yaf_Application(APPLICATION_PATH . "/conf/application.ini");
$app->bootstrap() // 调用 Bootstrap.php 中定义的引导方法
->run();
?>
示例 #3 重写规则
#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 应用程序配置
[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 默认控制器
<?php
class IndexController extends Yaf_Controller_Abstract {
/* 默认操作 */
public function indexAction() {
$this->_view->word = "hello world";
// 或者
// $this->getView()->word = "hello world";
}
}
?>
示例 #6 默认视图模板
<html>
<head>
<title>Hello World</title>
</head>
<body>
<?php echo $word;?>
</body>
</html>
示例 #7 运行应用程序
上面的示例将输出类似于
<html> <head> <title>Hello World</title> </head> <body> hello world </body> </html>
注意:
您也可以使用 Yaf 代码生成器生成上面的示例,您可以在此处找到它 yaf@github。
基于实际案例的 YAF:Hooks、Event、Modules、Plugins、多个模板、多种语言、SQL 集中管理...
支持电子商务平台、OA、ERP、IaaS、PaaS、SaaS、博客、CMS...
任何平台都需要的一些通用功能:用户、ACL、菜单...
https://github.com/letwang/HookPHP
替代方案
您可以使用 Yaf 代码生成器生成上面的示例:https://github.com/laruence/php-yaf/tree/master/tools/cg
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 中,将查询字符串 "_path_info" 放到 $_SERVER 变量中。
<?php
ini_set("display_errors",true);
error_reporting(E_ALL|E_ERROR);
//print_r($_SERVER);
$_SERVER['PATH_INFO']=@$_GET['_path_info']; // 加这一行,yaf 只认 PATH_INFO
define("APPLICATION_PATH",dirname(__DIR__));
$app = new Yaf\Application(APPLICATION_PATH.'/conf/application.ini');
$app->bootstrap()->run();
?>
PHP8 Yaf3.3.3 按照官网配置 导致Nginx死循环:
rewrite or internal redirection cycle while processing "/index.phpindex.phpindex.......
解决:
示例 #3 重写规则
#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;
}
}
唯一的变化,是 多出1个 ?问号
我成功将 “application” 目录设置为
- application/
- Bootstrap.php
+ modules
+ Index
+ controllers
- Index.php // 默认控制器
+ views
|+ index
- index.phtml // 默认操作的视图模板
- library
- models
- plugins
并且 Bootstrap.php 应该至少包含 3 行代码,如下所示
<?php
class Bootstrap extends Yaf_Bootstrap_Abstract {
}
nginx 重写规则应该是
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?$1 last;
}
http://us3.php.net/manual/zh/yaf.tutorials.php
丢失了默认的 Bootstrap.php
<?php
/* bootstrap 类应该定义在 ./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__);
}
}
使用 nginx 和 php-fpm,您可以配置
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;
}
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 中,将查询字符串 "_path_info" 放到 $_SERVER 变量中。
<?php
ini_set("display_errors",true);
error_reporting(E_ALL|E_ERROR);
//print_r($_SERVER);
$_SERVER['PATH_INFO']=@$_GET['_path_info']; // 加这一行,yaf 只认 PATH_INFO
define("APPLICATION_PATH",dirname(__DIR__));
$app = new Yaf\Application(APPLICATION_PATH.'/conf/application.ini');
$app->bootstrap()->run();
?>
当您为 yaf 框架使用 nginx & php-fpm 配置时,您必须在 nginx 中设置 PATH_INFO 支持。否则它将无法工作。
演示
location / {
try_files $uri $uri/ @path_rw;
}
#path_info 是某些 php 框架(如 yaf/thinkphp)需要的
location @path_rw {
rewrite ^/(.*)$ /index.php/$1 last;
}
location ~ \.php {
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
fastcgi_split_path_info ^(.+?\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}