A simple question:
What is the syntax for creating a function with unlimited* arguments in PHP?
Example (ActionScript 3):
function multiTrace(...arguments):void
{
var i:String;
for each(i in arguments)
trace(i);
}
The goal is to have a function that I can call and list any given amount of stylesheets within, eg:
$avian->insertStyles("overall.css", "home.css");
*Subject to obvious limitations (RAM, etc).