0% found this document useful (0 votes)
35 views

Learn PHP - Functions - PHP Built-In Functions Cheatsheet - Codecademy

PHP has many built-in functions to make common programming tasks easier, such as the echo function for output. These functions are documented on php.net along with their name, required and optional parameters, and return type. Popular built-in functions in PHP allow programmers to implement and repeat tasks throughout programs without writing additional code.

Uploaded by

usman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views

Learn PHP - Functions - PHP Built-In Functions Cheatsheet - Codecademy

PHP has many built-in functions to make common programming tasks easier, such as the echo function for output. These functions are documented on php.net along with their name, required and optional parameters, and return type. Popular built-in functions in PHP allow programmers to implement and repeat tasks throughout programs without writing additional code.

Uploaded by

usman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Cheatsheets / Learn PHP: Functions

PHP Built-in Functions

PHP built-in functions


PHP comes standard with many built-in functions. They echo "I am built in";
give us an easier way to implement and repeat popular
tasks throughout a program. A popular example is the
echo function.
Many more are documented at
https://www.php.net/docs.php. In addition to a
description of what the function does, the
documentation for each function denotes:
The name of the function
Required parameters and their types
Optional parameters (in square brackets, []),
their types, and default values
The return type of the function (after the final
colon, :)

Save Print Share

You might also like