Function: Simple No-Parameter

Below is a simple function having no argument. What is argument? when a function is called some parameters are passed along with a function call, these parameters are passed to the local variables declared within parenthesis.
<?php
function simple()
{
echo " Acaller has called this simple function <br>";
return "Hi: welcome to world of php <br>";
}
//calling function
echo simple();

?>