多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 函数 ~~~ /** * 模版中使用函数 * 视图文件位置: /application/example/view/ViewController/fetchExample.html * @return string */ public function functionExample() { $age = 18.88; $this->assign('age', $age); return $this->fetch(); } ~~~ ~~~ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>function</title> </head> <body> {:round($age,0)} </body> </html> ~~~