A function refers to a program that is put together to do a certain thing. Also called subroutine, (in OOP) method.
The real power of PHP comes from its functions: it has over 1000 built-in functions.
PHP User-Defined Functions
In addition to the built-in PHP functions, we can create our own functions.
A function is a block of statements that can be used repeatedly in a program.
The function will not be executed immediately when the page is loaded.
Function will only be executed when called. (Recommended learning: PHP programming from entry to proficiency)
Creating user-defined functions in PHP
User-defined functions are declared with the word "function "Starts:
Syntax
function functionName() { 被执行的代码; }
Note: Function names can start with letters or underscores (not numbers).
Note: Function names are not case-sensitive.
Tip: The function name should reflect the task performed by the function.
In the following example, we create a function named "writeMsg()". An opening brace ({) indicates the beginning of a function's code, while a closing brace (}) indicates the end of the function. This function outputs "Hello world!". To call this function, just use the function name:
Example
<?php function sayHi() { echo "Hello world!"; } sayhi(); // 调用函数?>
The above is the detailed content of what is php function. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver CS6
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor
