The concept and role of PHP functions

**熬夜选手
Release: 2020-05-01 14:53:05
Original
40 people have browsed it

The concept and role of function

Function is not a number! A function is a form of code (grammatical form).

A function is a whole package of "several lines of code" in a grammatical form. The whole can be "executed when needed" (that is, execute several lines of code).

Function is an effective way to solve the need to execute the same code under different situations (different code locations) - the so-called code reuse.


Definition and calling of functions

//定义语法形式:
function   函数名($形参1,$形参2,..){ 
函数体语句块; //就是若干行代码
}
//调用语法形式:
函数名($实参1,$实参2, ...... );
Copy after login

Instructions:

Formal parameters are actually variables, which can only be used inside the function;

actual parameters are actually data, which will be passed in Data inside the function (assigned to formal parameter variables in one-to-one correspondence);


Function return value

What is the return value of a function?

含义:
一个函数在执行结束时,可以让其返回一个数据,这就是函数的返回值。
语法:
return  要返回的数据;
Copy after login

Explanation:

The return value obtained by a function execution can be used in any situation where data is required, just like using a The variable data is the same.

In addition, the return statement does not need to contain the following data. In this case, it simply ends the function and does not return the data. (It can also be said to return null, the empty data).


##Little test:

Now let us define a function ourselves, Calculate the surface area of ​​a cuboid of any length, width and height.

Copy after login


##Summary:

In this way, when we develop the program, if a certain piece of code needs to be executed many times, we can encapsulate this piece of code into a function, thereby improving development efficiency and code reuse.

The above is the detailed content of The concept and role of PHP functions. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
1
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!