How can i modify returning value of built-in php function without creating new function with another name and renaming all of used functions with previous name to new one? e.g.
function time() {
return time()-1000;
}
Of course this won't pass, isn't there something like "function time() extends time() {}" or similar?
timeaccept a callback, call it and pass the value to it. You'd still have to defined that callback though. – Felix Kling Jul 10 '11 at 10:36time(function(){...})? It is still a callback, it does not matter how you create it. – Felix Kling Jul 10 '11 at 11:02