PHP Development Variables (ii)

Source: Internet
Author: User

Let's take a piece of this article to learn the scope of the variable. Variables must conform to the defined rules of a variable when used, and variables must be used within a valid range, beyond the valid range, where the variable is meant to be.

The scope of the variable is the following table:



Let's run a piece of code to distinguish between global variables and variables within functions, with the following code:


<?php$jackstr = "I am a global variable";  Define global variables function output () {$jackStr = "I am a variable within a function";  Defines the variable inside the function echo $jackStr; echo "\ n";} Output ();     The variable echo $jackStr in the output function;   Output global variable?>

The output results are as follows:



Let's look at the method of using global variable values within a function, with the following code:

<?php$leestr = "I am a global variable * * *";  Define global variables function output () {$jackStr = "I am a variable within a function * * *";  Defines the variable in the function echo $jackStr; echo "\ n"; global $leeStr; echo $leeStr;} Output ();     Calling function Output variable?>


The results of the operation are as follows:












PHP Development Variables (ii)

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.