PHP function variable scope and function return value tutorial

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags default echo example external function php php tutorial programming

In the PHP tutorial, the variables defined in a function, including parameters, cannot be accessed by the function external variables, and, by default, variables that are defined outside a function cannot be accessed by the function variables.

Look at the example below

<?php
$a = 1;
$b = 2;
function Sum ()
{
Global $a, $b;
$b = $a + $b;
}
Sum ();
Echo $b;
?> This returns the bits value of 3, in PHP, Global is a global variable all of this, then we look at the PHP variable reference instance

<?php
Function Str_unite (& $string)
{
$string. = ' also like blue. '
}
$str = ' Like Red, '
Str_unite ($STR);
Echo $str; Output: ' Like red, also like blue. '
?>
, which is a reference to the global variable and function of the function's scope, here's a local variable for the function

<?php
$a = 1;
$b = 2;
function Sum ($a, $b)
{
$b = $a + $b;

echo $b;//3
}
Sum ();
Echo $b; executes
?>
This site original tutorial reproduced annotated source www.jzread.com/

Related Article

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.