Home >Backend Development >PHP Tutorial >php include_once引入的文件中的变量不能使用

php include_once引入的文件中的变量不能使用

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 20:20:413128browse

假设一个叫test1.php文件中的内容

<code><?php $a=5;
?></code>

另一个叫test2.php文件的内容

<code><?php require_once 'test1.php';
function test(){
    echo $a;
}
test();
?></code>

然后访问test2.php 程序报错 说没有找到该变量。
请问各位大神为什么,应该如何解决

回复内容:

假设一个叫test1.php文件中的内容

<code><?php $a=5;
?></code>

另一个叫test2.php文件的内容

<code><?php require_once 'test1.php';
function test(){
    echo $a;
}
test();
?></code>

然后访问test2.php 程序报错 说没有找到该变量。
请问各位大神为什么,应该如何解决

在PHP中,全局变量是不能在函数内直接调用的。在这个代码里,如果你想在test函数里面调用$a,应该先用global声明。

<code>function test(){
    global $a;
    echo $a;
}
</code>

一个函数内部的局部变量,一个是全局变量,当然会有问题!建议先好好学习一下局部变量和全局变量的定义。

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