PHP - Function
About
When the function is inside a class, it's called a method.
Articles Related
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){
}