If I had some function like this:
PHP Code:
public testFunc(id, someString[]) {
// Dummy
}
then how could I do something like this:
PHP Code:
public delayTestFunc(id, someString[]) {
set_task(5.0, "testFunc", 1, ??, ??)
}
what would you pass as parameter array and parameter length ?