## PHPSTART 模版引用
> 模板调用 ,返回编译后的模版文件地址,因为是include引用编译后的模版脚本,所以模版中可直接使用当前局部变量
@param $templatename
@param $path 默认SCRIPT_PATH
~~~
include V($template, $path)
$template 缺省值是 当前控制器名字,对应全局常量ACTION
~~~
与C() F()加载方法相同,先从$path目录寻找模版,一直网上遍历
如果$template以“/”开头,则直接从程序目录寻找模版,并不会再一层一层的往上遍历
* * * * *
**举例:**
http://phpstart.xyz/test/group1/index/template
~~~
function template(){
include V('helloworld');
include V('helloworld','Group2');
//include V();
}
~~~
第一个是从 '/test/group1/__Tpl/hello.html' 一直往上遍历,最后一层是 '/test/__Tpl/hello.html'
第二个是从 '/test/group2/__Tpl/hello.html' 一直往上遍历:
由于‘/test/group2/__Tpl/hello.html’已存在,所以直接返回编译后的php缓存文件路径。
第三个相当于include V('template');