Home >php教程 >php手册 >ThinkPHP动态include简单的解决办法

ThinkPHP动态include简单的解决办法

WBOY
WBOYOriginal
2016-06-07 11:38:32955browse

根据等级调用不同的显示页面,因此需要动态引入文件
动态引用文件
今天实例中用到了需要动态include文件 这样的方法,但thinkPHP不支持动态解析。

使用场景: 用户登录后,根据等级调用不同的显示页面,因此需要动态引入文件,而thinkPHP恰恰又不支持动态引入,只好自己想办法了。

那应该怎么去使用呢?
试用很多,但都不能成功引入,因此直接使用了纯PHP代码实现:

好了,贴个图说明一下吧:
ThinkPHP动态include简单的解决办法<?php include_once(ROOTPATH."/Home/Admin/View/Public/menu".$_SESSION[&#039;admin_user&#039;][&#039;level&#039;].".tpl");<br /> ?>另一种动态引入模式:http://www.thinkphp.cn/code/1260.html

AD:真正免费,域名+虚机+企业邮箱=0元

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn