Say I've got someting I use a lot. For instance about 90% of the time when I use
explode ($delimiter, $string);
Usually you'd be using it like this:
$string = "blah/blah/blah";
$e = explode("/", $string);
Will PHP be faster if I write a custom function?
#reusable
function c4($str) {
return explode("/", $str);
}
$e = c4("blah/blah/blah/");
Or maybe when written as a Anonymous function?
#reusable
$c4 = function($str) {
return explode("/", $str);
};
$e = $c4("blah/blah/blah");
I don't know how to put this, but maybe this is the right question: Does PHP 'cache' user functions for future use (while parsing)? If so, what is the breakpoint of using native functions and reusing the same custom function becomes more efficient when the same parameters are used. Possibly because of the less amount of parseable code?
Just read StackOverflow's suggestion:
"We prefer questions that can be answered, not just discussed."
So I really hope this doesn't end in discussion. Very curiously awaiting your reply!
