我正在模板文件中开发一个php smarty项目:
...
<div class="text-center" id="tableLoading">
<p><i class="fa fa-spinner fa-spin"></i> {$LANG.loading}</p>
</div>
</div>
// there I want to include a script:
<script type="text/JavaScript">
include($_SERVER['DOCUMENT_ROOT'] . '/templates/NeWorld/clientareaproducts_ext/clientareaproducts.js');
</script>
我尝试使用$_SERVER['DOCUMENT_ROOT'] . xxx
组合绝对路径。但这似乎行不通。由于脚本是扩展名,因此我无法导入模板的相应php文件中,因此必须在其中包含。
如何实现?