Functions in PHP

This page showcases functions in PHP.

What are Functions?

Functions are like mini-programs within your bigger program. They do specific tasks. You can call them repeatedly with different inputs, making your code cleaner and more efficient.

Example 1: Built-in Function - strlen()

Length of the name: 5

Example 2: User-Defined Function - greetUser()

Hello, Bob! Welcome to our website.
Hello, John! Welcome to our website.