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!
https://t.me/jw_1xbet/805
Georgerah
27 Oct 25 at 2:41 pm
https://t.me/s/jw_1xbet/161
Georgerah
27 Oct 25 at 2:44 pm
I’d like to find out more? I’d want to find out some additional
information.
نمایندگی ظرفشویی ال جی
27 Oct 25 at 2:44 pm
кракен онлайн
кракен сайт
Henryamerb
27 Oct 25 at 2:46 pm
The best we recommend: https://datamindstec.com
ArthurCoery
27 Oct 25 at 2:47 pm
I am regular reader, how are you everybody?
This article posted at this web page is genuinely fastidious.
franchiseindo
27 Oct 25 at 2:47 pm
Мне обещали бонус за задержку в 5 + 3 =8 грамм , так и прислали +))) спасибо.+))) купить скорость, кокаин, мефедрон, гашиш Вы не могли сегодня оплатить заказ, потому что мы сегодня не работаем 🙂
RichardDring
27 Oct 25 at 2:48 pm
teamworkinnovation – Inspiring overall, great source for learning how to build innovative teams.
Trinidad Guzzio
27 Oct 25 at 2:48 pm
наркологические услуги москвы [url=http://www.narkologicheskaya-klinika-24.ru]http://www.narkologicheskaya-klinika-24.ru[/url] .
narkologicheskaya klinika_pvSr
27 Oct 25 at 2:49 pm
Fantastic beat ! I wish to apprentice while you amend your website,
how could i subscribe for a blog website? The account helped me a acceptable
deal. I had been a little bit acquainted of this your broadcast offered bright clear idea
https://www.instagram.com/soldier_surprise_stories/reel/DOcD7LyiMt-/?hl=en
27 Oct 25 at 2:52 pm
shopandshine – I like how smooth the shopping experience is, from browsing to checkout.
Tam Macbeth
27 Oct 25 at 2:54 pm
кракен vk4
кракен vk4
Henryamerb
27 Oct 25 at 2:54 pm
globalchoicehub – The site feels professional and easy to use, really smooth shopping process.
Ed Garrison
27 Oct 25 at 2:55 pm
кракен android
кракен сайт
Henryamerb
27 Oct 25 at 2:55 pm
I’m truly enjoying the design and layout of your website.
It’s a very easy on the eyes which makes it much more enjoyable for me to come here and visit more
often. Did you hire out a designer to create your theme?
Excellent work!
layarkaca21
27 Oct 25 at 2:55 pm
That is very fascinating, You’re an overly professional blogger.
I’ve joined your rss feed and sit up for seeking extra
of your magnificent post. Additionally, I’ve shared your
website in my social networks
turkey visa on arrival for australian
27 Oct 25 at 2:56 pm
deutsche buchmacher
my web page – bestes sportwetten portal
bestes sportwetten portal
27 Oct 25 at 2:56 pm
yourtradingmentor – Love how this site simplifies complex trading ideas into practical, clear lessons.
Ryann Battis
27 Oct 25 at 2:56 pm
Attractive section of content. I just stumbled upon your website and in accession capital to
assert that I acquire in fact enjoyed account your blog posts.
Anyway I will be subscribing to your augment and even I achievement
you access consistently fast.
bokep abong lingling
27 Oct 25 at 2:58 pm
Woah! I’m really loving the template/theme of this blog.
It’s simple, yet effective. A lot of times it’s very difficult to get that “perfect balance” between usability and visual appeal.
I must say that you’ve done a superb job with this.
Also, the blog loads very quick for me on Firefox.
Outstanding Blog!
Vernixor
27 Oct 25 at 2:58 pm
https://t.me/s/jw_1xbet/383
Georgerah
27 Oct 25 at 3:00 pm
кракен vk5
kraken
Henryamerb
27 Oct 25 at 3:00 pm
simplelivinghub – I like how every item feels purposeful, not just another random thing.
Mavis Trimnal
27 Oct 25 at 3:00 pm
โพสต์นี้ อ่านแล้วเข้าใจง่าย ค่ะ
ดิฉัน เพิ่งเจอข้อมูลเกี่ยวกับ
ข้อมูลเพิ่มเติม
สามารถอ่านได้ที่ ทดลองเล่น akbet25 ฟรี
เหมาะกับคนที่กำลังหาข้อมูลในด้านนี้
มีตัวอย่างประกอบชัดเจน
ขอบคุณที่แชร์ ข้อมูลที่น่าอ่าน นี้
จะคอยดูว่ามีเนื้อหาใหม่ๆ มาเสริมอีกหรือไม่
ทดลองเล่น akbet25 ฟรี
27 Oct 25 at 3:01 pm
https://t.me/s/jw_1xbet/72
Georgerah
27 Oct 25 at 3:01 pm
анонимная наркология [url=narkologicheskaya-klinika-28.ru]анонимная наркология[/url] .
narkologicheskaya klinika_mzMa
27 Oct 25 at 3:02 pm
teamworksuccesspath – I like how this site highlights teamwork as the foundation of growth.
Emmitt Devasier
27 Oct 25 at 3:05 pm
rankwebdevelopers.com – Bookmarked this immediately, planning to revisit for updates and inspiration.
Steven Rasberry
27 Oct 25 at 3:05 pm
https://www.diigo.com/item/note/8urmd/a5v9?k=b50d0b16622a545683c25eace54dab5b
NelsonBus
27 Oct 25 at 3:06 pm
купить диплом в курске [url=https://www.rudik-diplom9.ru]купить диплом в курске[/url] .
Diplomi_pwei
27 Oct 25 at 3:06 pm
kraken СПб
кракен сайт
Henryamerb
27 Oct 25 at 3:07 pm
Does your blog have a contact page? I’m having trouble locating it
but, I’d like to shoot you an email. I’ve got some ideas
for your blog you might be interested in hearing.
Either way, great site and I look forward to seeing it expand over time.
Passionate American woman speaks out about the assassination of Charlie Kirk
27 Oct 25 at 3:10 pm
successnetworkgroup – Love how this platform promotes collaboration and shared success among professionals.
Malik Pollo
27 Oct 25 at 3:11 pm
можно ли купить диплом [url=https://www.rudik-diplom12.ru]можно ли купить диплом[/url] .
Diplomi_iiPi
27 Oct 25 at 3:11 pm
Wonderful blog! Do you have any hints for aspiring writers?
I’m hoping to start my own site soon but I’m a little lost
on everything. Would you recommend starting with a free platform like WordPress
or go for a paid option? There are so many options
out there that I’m completely overwhelmed .. Any suggestions?
Cheers!
God Bless Charlie kirk : A Hero’s Last Goodbye
27 Oct 25 at 3:12 pm
uniquedecorstore – My order arrived quickly and was packaged perfectly, very impressed.
Ella Knudson
27 Oct 25 at 3:12 pm
I am actually happy to glance at this weblog posts which contains plenty of useful data, thanks for providing these statistics.
https://www.instagram.com/soldier_surprise_stories/reel/DOedCy-iDIL/?hl=en
27 Oct 25 at 3:12 pm
88FC- sân chơi Uy Tín – an toàn – minh bạch tháng 10/2025 | Đăng Ký +888k
88fc một sân chơi “xanh chín” sở hữu giấy
phép của tổ chức PAGCOR, nạp rút nhanh, kèo
thể thao hấp dẫn, casino đã tay và ưu đãi rõ
ràng? 88FC là điểm đến đáng cân nhắc: tặng ngay 88$ cho tân thủ, tỷ lệ hoàn trả
theo danh mục, đa kênh thanh toán nội địa, xác minh minh bạch và
hỗ trợ 24/7. Hệ sinh thái game phong phú (thể thao,
live casino, slot/nổ hũ, bắn cá, game bài, xổ số) với
RTP phổ biến 96–98% theo chuẩn nhà cung cấp, tốc
độ xử lý giao dịch mục tiêu 1 –10 phút.
Bài viết này tổng hợp A–Z về 88FC: tính năng, ưu đãi, hướng dẫn đăng ký – KYC, nạp rút,
bảo mật, so sánh đối thủ và FAQ – đúng nhu cầu người dùng,
đúng chuẩn Google Quality Guidelines & NLP tự nhiên.
https://3tianping.cn.com/
88fc
27 Oct 25 at 3:13 pm
https://speakerdeck.com/codeprom11o
fmnewoi
27 Oct 25 at 3:14 pm
Spedra prezzo basso Italia: FarmaciaViva – FarmaciaViva
RichardImmon
27 Oct 25 at 3:15 pm
kraken vk4
кракен vk4
Henryamerb
27 Oct 25 at 3:15 pm
кракен vk5
кракен сайт
Henryamerb
27 Oct 25 at 3:16 pm
globalmarketinsight – Love how everything is presented clearly without unnecessary jargon or fluff.
Phyliss Lokker
27 Oct 25 at 3:16 pm
частные наркологические клиники в москве [url=https://www.narkologicheskaya-klinika-27.ru]частные наркологические клиники в москве[/url] .
narkologicheskaya klinika_wopl
27 Oct 25 at 3:17 pm
successfultradersclub – Every tutorial feels insightful, with examples that make the concepts easy to apply.
Dorcas Parviainen
27 Oct 25 at 3:18 pm
markettrendalerts – I like how the content combines charts, data, and expert analysis efficiently.
Caroline Ehrich
27 Oct 25 at 3:19 pm
see this page
PHP hook, building hooks in your application – Sjoerd Maessen blog at Sjoerd Maessen blog
see this page
27 Oct 25 at 3:19 pm
kraken qr code
кракен
Henryamerb
27 Oct 25 at 3:22 pm
купить диплом в ангарске [url=https://rudik-diplom12.ru/]купить диплом в ангарске[/url] .
Diplomi_wyPi
27 Oct 25 at 3:23 pm
Hi to every , because I am truly eager of reading this
web site’s post to be updated regularly. It includes
good material.
https://ngha.sa.com
27 Oct 25 at 3:23 pm