PHP hook, building hooks in your application
Introduction
One of the real challenges in building any type of framework, core or application is making it possible for the developers to hook into the business logic at specific points. Since PHP is not event based, nor it works with interrupts you have to come up an alternative.
The test case
Lets assume we are the main developers of a webshop framework. Programmers can use our framework to build complete webshops. Programmers can manage the orders that are placed on the webshop with the order class. The order class is part of our framework and we don’t want it to be extended by any programmer. However we don’t want to limit to programmers in their possibilities to hook into the orders process.
For example programmers should be able to send an email to the webshopowner if an order changes from one specific delivery status to another. This functionality is not part of the default behavior in our framework and is custom for the progammers webshop implementation.
Like said before, PHP doesn’t provide interrupts or real events so we need to come up with another way to implement hooks into our application. Lets take a look at the observer pattern.
Implementing the Observer pattern
The observer pattern is a design-pattern that describes a way for objects to be notified to specific state-changes in objects of the application.
For the first implementation we can use SPL. The SPL provides in two simple objects:
SPLSubject
- attach (new observer to attach)
- detach (existing observer to detach)
- notify (notify all observers)
SPLObserver
- update (Called from the subject (i.e. when it’s value has changed).
iOrderRef = $iOrderRef;
// Get order information from the database or an other resources
$this->iStatus = Order::STATUS_SHIPPED;
}
/**
* Attach an observer
*
* @param SplObserver $oObserver
* @return void
*/
public function attach(SplObserver $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (isset($this->aObservers[$sHash])) {
throw new Exception('Observer is already attached');
}
$this->aObservers[$sHash] = $oObserver;
}
/**
* Detach observer
*
* @param SplObserver $oObserver
* @return void
*/
public function detach(SplObserver $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (!isset($this->aObservers[$sHash])) {
throw new Exception('Observer not attached');
}
unset($this->aObservers[$sHash]);
}
/**
* Notify the attached observers
*
* @param string $sEvent, name of the event
* @param mixed $mData, optional data that is not directly available for the observers
* @return void
*/
public function notify()
{
foreach ($this->aObservers as $oObserver) {
try {
$oObserver->update($this);
} catch(Exception $e) {
}
}
}
/**
* Add an order
*
* @param array $aOrder
* @return void
*/
public function delete()
{
$this->notify();
}
/**
* Return the order reference number
*
* @return int
*/
public function getRef()
{
return $this->iOrderRef;
}
/**
* Return the current order status
*
* @return int
*/
public function getStatus()
{
return $this->iStatus;
}
/**
* Update the order status
*/
public function updateStatus($iStatus)
{
$this->notify();
// ...
$this->iStatus = $iStatus;
// ...
$this->notify();
}
}
/**
* Order status handler, observer that sends an email to secretary
* if the status of an order changes from shipped to delivered, so the
* secratary can make a phone call to our customer to ask for his opinion about the service
*
* @package Shop
*/
class OrderStatusHandler implements SplObserver
{
/**
* Previous orderstatus
* @var int
*/
protected $iPreviousOrderStatus;
/**
* Current orderstatus
* @var int
*/
protected $iCurrentOrderStatus;
/**
* Update, called by the observable object order
*
* @param Observable_Interface $oSubject
* @param string $sEvent
* @param mixed $mData
* @return void
*/
public function update(SplSubject $oSubject)
{
if(!$oSubject instanceof Order) {
return;
}
if(is_null($this->iPreviousOrderStatus)) {
$this->iPreviousOrderStatus = $oSubject->getStatus();
} else {
$this->iCurrentOrderStatus = $oSubject->getStatus();
if($this->iPreviousOrderStatus === Order::STATUS_SHIPPED && $this->iCurrentOrderStatus === Order::STATUS_DELIVERED) {
$sSubject = sprintf('Order number %d is shipped', $oSubject->getRef());
//mail('secratary@example.com', 'Order number %d is shipped', 'Text');
echo 'Mail sended to the secratary to help her remember to call our customer for a survey.';
}
}
}
}
$oOrder = new Order(26012011);
$oOrder->attach(new OrderStatusHandler());
$oOrder->updateStatus(Order::STATUS_DELIVERED);
$oOrder->delete();
?>
There are several problems with the implementation above. To most important disadvantage is that we have only one update method in our observer. In this update method we don’t know when and why we are getting notified, just that something happened. We should keep track of everything that happens in the subject. (Or use debug_backtrace… just joking, don’t even think about using it that way ever!).
Taking it a step further, events
Lets take a look at the next example, we will extend the Observer implementation with some an additional parameter for the eventname that occured.
Finishing up, optional data
iOrderRef = $iOrderRef;
// Get order information from the database or something else...
$this->iStatus = Order::STATUS_SHIPPED;
}
/**
* Attach an observer
*
* @param Observer_Interface $oObserver
* @return void
*/
public function attachObserver(Observer_Interface $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (isset($this->aObservers[$sHash])) {
throw new Exception('Observer is already attached');
}
$this->aObservers[$sHash] = $oObserver;
}
/**
* Detach observer
*
* @param Observer_Interface $oObserver
* @return void
*/
public function detachObserver(Observer_Interface $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (!isset($this->aObservers[$sHash])) {
throw new Exception('Observer not attached');
}
unset($this->aObservers[$sHash]);
}
/**
* Notify the attached observers
*
* @param string $sEvent, name of the event
* @param mixed $mData, optional data that is not directly available for the observers
* @return void
*/
public function notifyObserver($sEvent, $mData=null)
{
foreach ($this->aObservers as $oObserver) {
try {
$oObserver->update($this, $sEvent, $mData);
} catch(Exception $e) {
}
}
}
/**
* Add an order
*
* @param array $aOrder
* @return void
*/
public function add($aOrder = array())
{
$this->notifyObserver('onAdd');
}
/**
* Return the order reference number
*
* @return int
*/
public function getRef()
{
return $this->iOrderRef;
}
/**
* Return the current order status
*
* @return int
*/
public function getStatus()
{
return $this->iStatus;
}
/**
* Update the order status
*/
public function updateStatus($iStatus)
{
$this->notifyObserver('onBeforeUpdateStatus');
// ...
$this->iStatus = $iStatus;
// ...
$this->notifyObserver('onAfterUpdateStatus');
}
}
/**
* Order status handler, observer that sends an email to secretary
* if the status of an order changes from shipped to delivered, so the
* secratary can make a phone call to our customer to ask for his opinion about the service
*
* @package Shop
*/
class OrderStatusHandler implements Observer_Interface
{
protected $iPreviousOrderStatus;
protected $iCurrentOrderStatus;
/**
* Update, called by the observable object order
*
* @param Observable_Interface $oObservable
* @param string $sEvent
* @param mixed $mData
* @return void
*/
public function update(Observable_Interface $oObservable, $sEvent, $mData=null)
{
if(!$oObservable instanceof Order) {
return;
}
switch($sEvent) {
case 'onBeforeUpdateStatus':
$this->iPreviousOrderStatus = $oObservable->getStatus();
return;
case 'onAfterUpdateStatus':
$this->iCurrentOrderStatus = $oObservable->getStatus();
if($this->iPreviousOrderStatus === Order::STATUS_SHIPPED && $this->iCurrentOrderStatus === Order::STATUS_DELIVERED) {
$sSubject = sprintf('Order number %d is shipped', $oObservable->getRef());
//mail('secratary@example.com', 'Order number %d is shipped', 'Text');
echo 'Mail sended to the secratary to help her remember to call our customer for a survey.';
}
}
}
}
$oOrder = new Order(26012011);
$oOrder->attachObserver(new OrderStatusHandler());
$oOrder->updateStatus(Order::STATUS_DELIVERED);
$oOrder->add();
?>
Now we are able to take action on different events that occur.
Disadvantages
Although this implementation works quite well there are some drawbacks. One of those drawbacks is that we need to dispatch an event in our framework, if we don’t programmers can’t hook into our application. Triggering events everywhere give us a small performance penalty however I do think this way of working gives the programmers a nice way to hook into your application on those spots that you want them to hook in.
Just for the record
Notice that this code is just an example and can still use some improvements, for example: each observer is initialized even it will maybe never be notified, therefore I suggest to make use of lazy in some cases for loading the objects. There are other systems to hook into an application, more to follow!
kraken vpn
кракен ios
JamesDaync
26 Oct 25 at 10:30 pm
платный наркологический диспансер москва [url=https://narkologicheskaya-klinika-23.ru]https://narkologicheskaya-klinika-23.ru[/url] .
narkologicheskaya klinika_wfet
26 Oct 25 at 10:35 pm
Refresh Renovation Southwest Charlotte
1251 Arrow Pine Ꭰr c121,
Charlotte, NC 28273,United Ѕtates
+19803517882
And conditioning air upgrades heating
And conditioning air upgrades heating
26 Oct 25 at 10:36 pm
1 x bet giri? [url=https://1xbet-14.com/]https://1xbet-14.com/[/url] .
1xbet_umet
26 Oct 25 at 10:37 pm
Получить диплом университета поможем. Купить диплом института – [url=http://diplomybox.com/diplom-instituta/]diplomybox.com/diplom-instituta[/url]
Cazrpbb
26 Oct 25 at 10:37 pm
медсестра которая купила диплом врача [url=http://frei-diplom15.ru/]медсестра которая купила диплом врача[/url] .
Diplomi_pqoi
26 Oct 25 at 10:40 pm
кракен актуальная ссылка
kraken vk5
Henryamerb
26 Oct 25 at 10:41 pm
Link with Singapore’ѕ vivid deals landscape tһrough Kaizenaire.cоm, thе leading site foг promotions ɑnd event offеrs from distinguished
firms.
Singaporeans ϲonstantly illuminate аt thе view of a promotion, welcoming tһeir city’s reputation ɑs an unequaled shopping heaven.
Singaporeans love tгying brand-neѡ recipes from international foods іn yoyr
һome, and keep іn mind to remaіn updated օn Singapore’s most recent promotions and shopping deals.
OCBC Bank supplies extensive financial services consisting օf interest-bearing accounts and financial
investment options, treasured Ƅy Singaporeans for their durable digital platforms ɑnd personalized services.
Sabrin Goh develops lasting style items leh,
preferred Ьy ecologically aware Singaporeans fⲟr their eco-chic designs one.
Putien brings Fujian cuisine ⅼike fried Heng Hwa bee
hoon, favored fоr light, seafood-focused dishes
ᴡith home town beauty.
Why wait օne, jump on Kaizenaire.cߋm for offеrs sіа.
ᒪook into my blog post Loans Without Income Proof Singapore
Loans Without Income Proof Singapore
26 Oct 25 at 10:42 pm
где купить диплом техникума одно [url=https://frei-diplom10.ru/]где купить диплом техникума одно[/url] .
Diplomi_ynEa
26 Oct 25 at 10:42 pm
https://mhcollege.in/social-network1/blogs/11840/1xBet-Free-Bet-Promo-Code-2026-Up-to-150-Bonus
KevinRit
26 Oct 25 at 10:44 pm
Ищу дезинфекция в пищевом производстве с выездом в область.
дезинсекция предприятий
KennethceM
26 Oct 25 at 10:44 pm
Вызвать уничтожение тараканов горячим туманом на дом, кто знает номер?
уничтожение крыс
KennethceM
26 Oct 25 at 10:46 pm
медицинское оборудование [url=http://medicinskoe–oborudovanie.ru]медицинское оборудование[/url] .
medicinskoe oborydovanie_cqei
26 Oct 25 at 10:46 pm
I go to see day-to-day a few sites and information sites to read articles or reviews, except this web site provides feature based posts.
www.globalnewspress.com
26 Oct 25 at 10:46 pm
kraken зеркало
кракен vpn
Henryamerb
26 Oct 25 at 10:47 pm
помощь нарколога [url=http://narkologicheskaya-klinika-23.ru/]http://narkologicheskaya-klinika-23.ru/[/url] .
narkologicheskaya klinika_phet
26 Oct 25 at 10:49 pm
1xbet mobi [url=https://1xbet-14.com/]1xbet-14.com[/url] .
1xbet_mket
26 Oct 25 at 10:49 pm
кракен тор
kraken РФ
JamesDaync
26 Oct 25 at 10:51 pm
After looking over a number of the blog articles on your web site,
I truly appreciate your way of writing a blog. I saved as a favorite it to my bookmark site list and will be checking back soon. Please check out my web site as well and tell me how you feel.
Agência de Modelos Major Model
26 Oct 25 at 10:51 pm
Viagra online kopen Nederland [url=https://herengezondheid.com/#]betrouwbare online apotheek[/url] Viagra online kopen Nederland
Davidduese
26 Oct 25 at 10:52 pm
кракен vk6
кракен Москва
Henryamerb
26 Oct 25 at 10:54 pm
кракен обмен
kraken ios
Henryamerb
26 Oct 25 at 10:55 pm
Отзывы о уничтожение вредителей положительные, попробуем.
дезинфекция офисов
KennethceM
26 Oct 25 at 10:55 pm
1xbet ?ye ol [url=https://1xbet-17.com]1xbet ?ye ol[/url] .
1xbet_afpl
26 Oct 25 at 10:56 pm
мед оборудование [url=www.medicinskoe–oborudovanie.ru/]мед оборудование[/url] .
medicinskoe oborydovanie_zyei
26 Oct 25 at 10:58 pm
This post is actually a fastidious one it helps new web users, who
are wishing for blogging.
대전출장마사지
26 Oct 25 at 10:58 pm
Hi, after reading this remarkable piece of writing i am too happy to share my know-how here with colleagues.
https://www.darvcontadores.com/bk-melbet-oficialnyj-sajt-obzor-2025/
OLaneDrync
26 Oct 25 at 10:59 pm
кракен зеркало
kraken vk6
Henryamerb
26 Oct 25 at 11:00 pm
медицинская техника [url=https://medicinskaya-tehnika.ru]медицинская техника[/url] .
medicinskaya tehnika_qwEi
26 Oct 25 at 11:00 pm
где купить диплом техникума форум [url=www.frei-diplom7.ru]где купить диплом техникума форум[/url] .
Diplomi_edei
26 Oct 25 at 11:01 pm
1xbet ?ye ol [url=1xbet-17.com]1xbet ?ye ol[/url] .
1xbet_lepl
26 Oct 25 at 11:01 pm
медтехника [url=https://www.medicinskaya-tehnika.ru]https://www.medicinskaya-tehnika.ru[/url] .
medicinskaya tehnika_flEi
26 Oct 25 at 11:03 pm
реабилитационный центр наркологический [url=http://narkologicheskaya-klinika-23.ru/]http://narkologicheskaya-klinika-23.ru/[/url] .
narkologicheskaya klinika_llet
26 Oct 25 at 11:03 pm
кракен обмен
kraken ios
Henryamerb
26 Oct 25 at 11:05 pm
Цена на дератизация цена адекватная, результат супер.
санобработка
KennethceM
26 Oct 25 at 11:07 pm
купить гриндер для травы
купить гриндер для травы
26 Oct 25 at 11:08 pm
где купить диплом техникума старая [url=https://www.frei-diplom10.ru]где купить диплом техникума старая[/url] .
Diplomi_syEa
26 Oct 25 at 11:09 pm
Fine way of describing, and good paragraph to obtain facts regarding my presentation subject matter, which i am
going to present in school.
Check out my page: zinnat02
zinnat02
26 Oct 25 at 11:09 pm
Дай думаю зайду поздороваюсь с мамонтами опасного бизнеса.:hello: купить Мефедрон, Бошки, Марихуану получил посыль.мхе отличного качества!а вот ам2233 пока думаю ко скольки мутить.все пишут по разному.
RichardDring
26 Oct 25 at 11:12 pm
медицинская аппаратура [url=https://medicinskoe–oborudovanie.ru/]медицинская аппаратура[/url] .
medicinskoe oborydovanie_ijei
26 Oct 25 at 11:12 pm
медтехника [url=http://medicinskaya-tehnika.ru]http://medicinskaya-tehnika.ru[/url] .
medicinskaya tehnika_dpEi
26 Oct 25 at 11:12 pm
1xbet giri? adresi [url=http://1xbet-17.com/]1xbet giri? adresi[/url] .
1xbet_hrpl
26 Oct 25 at 11:13 pm
kraken ссылка
kraken РФ
Henryamerb
26 Oct 25 at 11:13 pm
кракен ссылка
kraken ios
Henryamerb
26 Oct 25 at 11:14 pm
кракен android
kraken vk4
Henryamerb
26 Oct 25 at 11:18 pm
медтехника [url=www.medicinskaya-tehnika.ru]www.medicinskaya-tehnika.ru[/url] .
medicinskaya tehnika_kfEi
26 Oct 25 at 11:19 pm
1xbet yeni adresi [url=1xbet-17.com]1xbet yeni adresi[/url] .
1xbet_lfpl
26 Oct 25 at 11:20 pm
телефон наркологии [url=https://narkologicheskaya-klinika-24.ru/]https://narkologicheskaya-klinika-24.ru/[/url] .
narkologicheskaya klinika_piSr
26 Oct 25 at 11:20 pm
goedkope Viagra tabletten online [url=https://herengezondheid.shop/#]Heren Gezondheid[/url] betrouwbare online apotheek
Davidduese
26 Oct 25 at 11:23 pm
1xbet guncel [url=www.1xbet-14.com]1xbet guncel[/url] .
1xbet_jret
26 Oct 25 at 11:23 pm