Table of Contents

About

function

When the function is inside a class, it's called a method.

Management

Parameters

The function can be called with passing parameters only by their position and not by their name.

Variable-length argument

 
function name(...$var){

}