Php built-in functions list
- how to create function in php
- how to create function in phpmyadmin
- how to create delete function in php
- how to create global function in php
Types of functions in php.
PHP - Functions
Like most of the programming languages, a function in PHP is a block of organized, reusable code that is used to perform a single, related action. Functions provide better modularity for your application and a high degree of code reuse.
PHP supports a structured programming approach by arranging the processing logic by defining blocks of independent reusable functions.
Anonymous function in php
The main advantage of this approach is that the code becomes easy to follow, develop and maintain.
The following figure shows how the process of salary computation is successively broken down to independent and reusable functions.
Types of Functions
You already have seen many functions like fopen() and fread() etc.
They are built-in functions but PHP gives you option to create your own functions as well. There are two types of functions in PHP −
Built-in functions − PHP’s standard library contains a large number of built-in functions for string processing, file IO, mathematical computations and more.
User-defined functions − You can create user-defined functions
- how to create recursive function in php
- how to create shortcode in function php