Yii 1.1.8发布,PHP开发框架
程序员文章站
2022-04-19 23:01:53
...
PHP开发框架Yii 1.1.8 发布。该版本引入了超过80个新功能、加强和bug修复。你可以编写自定义URL规则类来为应用程序处理任意复杂的URL格式,改进的class autoloader等。 Yii是一个高性能的PHP5的web应用程序开发框架。通过一个简单的命令行工具 yiic 可以快速
PHP开发框架Yii 1.1.8 发布。该版本引入了超过80个新功能、加强和bug修复。你可以编写自定义URL规则类来为应用程序处理任意复杂的URL格式,改进的class autoloader等。
Yii是一个高性能的PHP5的web应用程序开发框架。通过一个简单的命令行工具 yiic 可以快速创建一个web应用程序的代码框架,开发者可以在生成的代码框架基础上添加业务逻辑,以快速完成应用程序的开发。
使用自定义url规则类的URL 规则配置:
- array(
- // a standard rule mapping '/login' to 'site/login', and so on
- 'action:(login|logout|about)>' => 'site/action>',
- // a custom rule to handle '/Manufacturer/Model'
- array(
- 'class' => 'application.components.CarUrlRule',
- 'connectionID' => 'db',
- ),
- // a standard rule to handle 'post/update' and so on
- 'controller:\w+>/action:\w+>' => 'controller>/action>',
- ),
自定义url规则类拓展自 CBaseUrlRule
,可以像如下方式实现:
- class CarUrlRule extends CBaseUrlRule
- {
- public $connectionID = 'db';
- public function createUrl($manager,$route,$params,$ampersand)
- {
- if ($route==='car/index')
- {
- if (isset($params['manufacturer'], $params['model']))
- return $params['manufacturer'] . '/' . $params['model'];
- else if (isset($params['manufacturer']))
- return $params['manufacturer'];
- }
- return false; // this rule does not apply
- }
- public function parseUrl($manager,$request,$pathInfo,$rawPathInfo)
- {
- if (preg_match('%^(\w+)(/(\w+))?$%', $pathInfo, $matches))
- {
- // check $matches[1] and $matches[3] to see
- // if they match a manufacturer and a model in the database
- // If so, set $_GET['manufacturer'] and/or $_GET['model']
- // and return 'car/index'
- }
- return false; // this rule does not apply
- }
- }
下载地址:http://www.yiiframework.com/download/
原文出自:开源中国社区
推荐阅读
-
Yii1.1框架实现PHP极光推送消息通知功能
-
php开发框架有哪些(javascript和java的区别)
-
PHP的Yii框架入门使用教程
-
php后台开发框架(php后端和java后端的区别)
-
在Mac OS上搭建PHP的Yii框架及相关测试环境
-
PHP开源开发框架ZendFramework使用中常见问题说明及解决方案
-
全面解读PHP的人气开发框架Laravel
-
EpiiAdmin 开源的php交互性管理后台框架, 让复杂的交互变得更简单!Phper快速搭建交互性平台的开发框架,基于Thinkphp5.1+Adminlte3.0+Require.js。
-
PHP开发框架kohana3.3.1在nginx下的伪静态设置例子
-
在Yii框架中使用PHP模板引擎Twig的例子