Say that I have an array as follows:
array(
[0] => function() { return "hello"; }
[1] => function() { return "world"; }
[2] => "look"
[3] => function() { return "and";}
[4] => function() { return "listen";}
)
Is there a way I can invoke 0, 1, 3 and 4 without invoking 2?