The variables in the file introduced by PHP include_once cannot be used

Source: Internet
Author: User
Suppose a call test1.phpContent in a file


  
   

Another content called the test2.php file


  
   

Then access the Test2.php program error saying that the variable was not found.
May I ask you why the great God, How should solve

Reply content:

Suppose that a test1.php file is called a content


  
   

Another content called the test2.php file


  
   

Then access the Test2.php program error saying that the variable was not found.
May I ask you why the great God, How should solve

In PHP, global variables cannot be called directly within a function. In this code, if you want to call $ A in the test function, you should first declare it with global.

function test(){    global $a;    echo $a;}

A local variable inside a function, one is a global variable, of course there is a problem! It is recommended that you study the definition of local variables and global variables first.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.