Hi! Is it possible to pass objects like you do in JavaScript in PHP:
function example($args){
...
}
example({foo: 'bar', lorem: 'ipsum'});
Or something similar to this? So that you both get an "infinite" number of arguments and a chosen name for the variable ($args). I know you can use an array but I prefer the JavaScript syntax of objects because it's clearer and less to type :)