Hello!
Is there way to call function like this
PHP Code:
new var[256] // inside of this string there will be function name
public something(id)
{
var()
}
public var() // var will be that what is inside variable var, i just but this for example
{
}
// or somehow like this
public something(id)
{
%s() < var[0] >
}
public var()
{
}
Thank you in advance!