I\'ve been wondering whether is possible or not to pass a function as parameter in PHP; I want something like when you\'re programming in JS:
object.exampleM
It's possible if you are using PHP 5.3.0 or higher.
See Anonymous Functions in the manual.
In your case, you would define exampleMethod like this:
exampleMethod
function exampleMethod($anonFunc) { //execute anonymous function $anonFunc(); }