XPHP Framework 是一个简单的PHP框架,简单,快捷,高效。
XPHP Framework V1.0.2使用
1:$this->_XPHP是框架全局变量 可以看到载入的文件,用户配置文件,url参数,程序运行时间,程序消耗内存.
2:自定义载入类库(函数) 程序中直接使用函数.
3:自定义载入类库(class) 程序中直接使用函数
4:在控制器中引入扩展类直接使用
$test = new test('xphpwbl');
print_r($test->aa());
$tt = new tt('tt');
print_r($tt->aa());
5:模版可以自由选择使用Smarty或者不适用使用原生态PHP作为模版
View://so.imop.us/home/xphp //so.imop.us/cn
框架内含Smarty 使用:
Controller:
$this->tpl->assign("xphp","XPHPV0.1");
$this->tpl->display('test.php');
Views:
XPHP Framework V1.0.2
View://so.imop.us/home/test //so.imop.us/t
6:框架config 是各种自定义配置,base模块, url模块
自定义全局载入类库
'libs' => array( //自定义载入类库(libs)
'load' => array( //载入类并且实例化
'mem', //Memcache
'res', //Redis
),
'import' => array( //只是载入类库,不实例化
'test',
'tt'
)
),
支持路由(default 智能模式 path 原生模式 rewrite 重写模式),生成地址的结尾符,网址后缀,url映射
7:框架含有Memecache/Memcached的操作类(多个操作)
8:框架PDO多库之前自由切换操作
9:框架含有Redis操作类