### extend
> 在controller 或 model 中引入:
```
use Extend\extend_function;
```
> 在方法中实例化:
```
$e = new extend_function();
```
> 调用演示
```
$e -> test();
```
* 开发者可通过 Extend/extend_function.php 文件中增加其它可扩展的功能函数方法。
**默认代码:**
```
/*
* 用户可扩展函数
*/
namespace Extend;
class extend_function
{
public function __construct()
{
}
public function test()
{
echo "this demo.";
}
}
```