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

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

WBOY
Release: 2016-06-06 20:20:41
Original
3123 people have browsed it

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

<code><?php $a=5;
?></code>
Copy after login
Copy after login

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

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

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

回复内容:

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

<code><?php $a=5;
?></code>
Copy after login
Copy after login

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

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

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

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

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

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

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template