Hooks in PHP

You can create a “hook” in PHP for plugins or additional processing, when you dont want something to act normally. This will allow you to write one script and then not have to go back and make the script ridiculously long, and full of if statements for different conditions. You can change the behavior based on conditions, or you can change it for some other reason.
Click to read great article on implementing hook functions in PHP with link to .
Click to read great article on implementing hook functions in PHP with link to .