Research on the scope of variables in the include file in php,

Source: Internet
Author: User

Research on the scope of variables in the include file in php,

 

In php, we sometimes need to include a file. For example, when I was writing a framework some time ago, I planned to use the native php as the template and then write a display method to introduce the template file. But this is just my obscenity.

After writing the Code, all the variables in the template are prompted to be undefined. The scope of the include file is summarized through various research and searching materials.

 

First case: file A Includes file B. In File B, you can call the variable in file.

File A code:

<?php $aaa = '123';  include "B.php";

File B code:

<?phpecho $aaa;

The output content is normal.

 

The second case: file A Includes file B, and then the variable of file B can be called in file.

File A code:

<?phpinclude "B.php";echo $fff;

File B code:

<?php$fff = 'i am f';

At this time, the content can be output normally.

 

Case 3: Call file B in A method of A class in file A, and then call the variables in this method in file B.

File A code:

<?phpclass test{    public function show(){        $bbb = 'abc';        include "B.php";    }}$t = new test;$t->show();

File B code:

<?phpecho $bbb;

At this time, the content can be output normally.

Case 4: file A introduces file B through A defined function. In File B, variables in file A cannot be used, but variables in function (display) can be called in file.

File A code:

<?php$aaa = '123';function display($file){    $bbb= 'asdasdas';    include $file;}display("B.php");

File B code:

<?phpecho $aaa;echo $bbb;

After running $ aaa, the prompt is undefined. $ bbb can be output normally.

Link: http://www.cnblogs.com/dragondean/

Therefore, it is not feasible for me to use a display method to introduce the template. Based on the three situations, I finally chose to write a class to import the template file. Currently, both ThinkPHP and Smarty use classes to introduce template files. If you have any shortcomings, please confirm them.

 

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.