Jump to content

callback functions


The Little Guy

Recommended Posts

in reality, all user-defined functions are callback functions..some defined functions allow for a function passed as an argument, and sometimes callback functions can be useful inside other functions...

 

here are some references..

http://www.sitepoint.com/forums/php-application-design-147/example-callback-php-336758.html

http://www.php.net/callback

Link to comment
https://forums.phpfreaks.com/topic/243220-callback-functions/#findComment-1249153
Share on other sites

Here is how I was planing on implementing a callback:

 

<?php
class TheCoolClass{
public $working = "";
function do_something($callback){
	$this->working = "I am doing something...";
	return call_user_func($callback);
}
}
$tcc = new TheCoolClass();
echo $tcc->do_something(function(){
return "hello";
});
echo $tcc->working;
?>

Link to comment
https://forums.phpfreaks.com/topic/243220-callback-functions/#findComment-1249170
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.