Currently I am doing this:
$f = create_function(null, somecode);
$f();
Is there anyway to not assign it to a variable, but instead directly execute it? I'm thinking of something like
create_function(null, somecode)();
But this is not working unfortunately. Do not ask me why I want to do this, there is no special reason, I was just wondering this the other day.