Home >Backend Development >PHP Tutorial >求教怎么使用include文件中的变量,在不定义全局变量的情况下

求教怎么使用include文件中的变量,在不定义全局变量的情况下

WBOY
WBOYOriginal
2016-06-13 10:27:27942browse

求教如何使用include文件中的变量,在不定义全局变量的情况下
情况是这样的。
我在1.php里include(2.php);
在2.php里定义个doInit()函数:
function doInit() {
$UserID=$_SESSION['UserID'];
$UserName=$_SESSION['UserNmae'];
}
我在1.php里调用doInit()函数后,如何才能使用$UserID变量。
不要定义全局变量啊。



因为很多页面都需要doInit()里的内容,所以我打算采用include的方式写在一个页面里。只要能实现这个功能的办法就可以。

------解决方案--------------------
如果不是函数返回,不行!
------解决方案--------------------

PHP code
function doInit() {        $UserID=$_SESSION['UserID'];    $UserName=$_SESSION['UserNmae'];    return array($userId, $UserName);}$ar = doInit();echo $ar[0];echo $ar[1];<div class="clear">
                 
              
              
        
            </div>
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