Home headlines Declaration and use of php functions

Declaration and use of php functions

Jun 28, 2018 am 10:02 AM

* Function

* 1. Declaration syntax;

* 2. Calling method;

* 3. Parameter setting;

* 4. Return value;

* 5. Scope

//Declaration

function hello() //无论有无参数,圆括号不能省略
{
    echo '欢迎来到php中文网学习';
}
Copy after login

//Call: call by name, must bring parentheses

hello();
echo '<hr>';
//可以设置参数
function hello1($siteName)
{
    echo '欢迎来到'.$siteName.'学习';
}
Copy after login

//You must bring parameters when calling now

hello1('php中文网');
hello1('www.php.cn');
Copy after login

//If you forget to give parameters when calling, you can give the function parameters a default value

function hello2($siteName = 'php中文网')
{
    echo '欢迎来到'.$siteName.'学习';
}
echo '<hr>';
Copy after login

//You can pass parameters when calling now , you can also pass no parameters

hello2();
echo '<br>';
hello2('PHP中文网_www.php.cn');
Copy after login

//If there are multiple parameters, the default value should be written to the end

function hello3($name ,$siteName = 'php中文网')
{
    echo '我是'.$name.',欢迎来到'.$siteName.'学习';
}
echo '<hr>';
Copy after login

//Calling method

hello3('peter zhu'); //第一个参数没有默认值,必须传参
echo '<br>';
hello3('peter zhu', 'www.php.cn'); //实参与形参的位置必须一一对应
echo '<hr>';
Copy after login

//Scope : Function internal variables cannot be accessed from the outside. Similarly, external variables cannot be accessed from inside the function.

$siteName = 'php中文网';
Copy after login

//External variables, or global variables, will automatically become an element in the global variable array $GLOBALS. The variable is The key name of the element

echo $GLOBALS['siteName']; //它里面的数据就是变量siteName中的值,而且这是一个超全局变量,可以在函数中使用
function hello4()
{
    $name = 'peter zhu';
//    return $siteName;
    return $GLOBALS['siteName'];
}
echo hello4();
echo '<br>';
echo $name; //外部是访问不到函数内的变量的,除非函数将这个变量返回到外部
Copy after login
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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize the lazy loading effect of images through php functions? How to optimize the lazy loading effect of images through php functions? Oct 05, 2023 pm 12:13 PM

How to optimize the lazy loading effect of images through php functions?

How to reduce memory usage through php functions? How to reduce memory usage through php functions? Oct 05, 2023 pm 01:45 PM

How to reduce memory usage through php functions?

PHP Deprecated: Function ereg_replace() is deprecated - Solution PHP Deprecated: Function ereg_replace() is deprecated - Solution Aug 18, 2023 am 10:48 AM

PHP Deprecated: Function ereg_replace() is deprecated - Solution

Introduction to PHP functions: strtr() function Introduction to PHP functions: strtr() function Nov 03, 2023 pm 12:15 PM

Introduction to PHP functions: strtr() function

Similarities and differences between PHP functions and Flutter functions Similarities and differences between PHP functions and Flutter functions Apr 24, 2024 pm 01:12 PM

Similarities and differences between PHP functions and Flutter functions

Summary of methods for implementing image editing and processing functions using PHP image processing functions Summary of methods for implementing image editing and processing functions using PHP image processing functions Nov 20, 2023 pm 12:31 PM

Summary of methods for implementing image editing and processing functions using PHP image processing functions

Comparing PHP functions to functions in other languages Comparing PHP functions to functions in other languages Apr 10, 2024 am 10:03 AM

Comparing PHP functions to functions in other languages

How performant are PHP functions? How performant are PHP functions? Apr 18, 2024 pm 06:45 PM

How performant are PHP functions?