PHP Code:
function onCreated() {
temp.func = "onTest";
temp.paramz = {1, 2, 3};
(@temp.func)(@temp.paramz);
}
function onTest(p) {
temp.letters = {NULL, "j", "e", "r"};
this.count = 0;
for(temp.param: temp.p)
{
this.count++;
(@ temp.letters[this.count]) = temp.param;
}
echo("Test:" SPC j SPC e SPC r);
}
Made this fast, dunno if it was something like this