​ 4.php functions can have no parameters or multiple"> What are the things to note about functions in php?-PHP Tutorial-php.cn

What are the things to note about functions in php?

零下一度
Release: 2023-03-10 16:20:02
Original
1548 people have browsed it

1. Start withfunction##;

2. The function name can start with a letter or an underscore;

3. The function body must be withincurly brackets;

1 
Copy after login

4.php function There can be no parameters or multiple parameters. If there are multiple parameters, they must be separated bycommas;

##5. The parameter is similar to a variable and should start with$;

1 
Copy after login

## 6.returnKey Words can make the function return a value;

Copy after login

7. Functions cannot return multiple values;

8. Built-in functions are functions supported by PHP itself by default;

##9. Use function_exists in php to determine whether the function exists;

1 
Copy after login

10. The function will not be executed immediately when the page is loaded;

##11. The function will only be executed when it is called;

The above is the detailed content of What are the things to note about functions in php?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
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!