Functions Example

Length of the string 'Hello, world!': 13

Area of a rectangle with length 5 and width 10: 50

Functions in PHP are blocks of code that perform specific tasks and can be reused throughout a program. Built-in functions like strlen() provide common functionalities, while user-defined functions allow developers to create custom behaviors. Functions can accept parameters and return values.

Functions Code