Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems like the topic of Aspect-Oriented Programming (AOP) in PHP started sometime in 2005 and died sometime around 2007.

Some (now apparently dead) projects include:

So is there anyone out there still working on this?

share|improve this question

closed as not constructive by Gordon Mar 20 at 7:19

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 6 down vote accepted

A new PECL extension now exists (still in beta but working really fine)

https://github.com/AOP-PHP/AOP

First beta released in PECL : http://pecl.php.net/AOP

share|improve this answer
1  
Thanks for posting. Great to see new development on this. – Garrett Bluma Jul 4 '12 at 1:59

The Flow3 framework has an AOP component as well.

FLOW3's AOP framework allows you to use of the most popular AOP techniques in your own PHP application. In contrast to other approaches it doesn't require any special PHP extensions, additional compile steps or modification of the target code – and it's a breeze to configure.

According to this blog post by ZF's Matthew Weier O'Phinney Lithium's Filters are more like Signal Slots. So you might find Flow's AOP with it's Pointcuts and Join Points more true to an AOP implementation.

share|improve this answer
1  
+1: Flow3's AOP implementation appears to be closer to standard AOP practice. Plus that's a great article you linked. – Garrett Bluma Jan 21 '11 at 5:04
Gordon, mind giving your two cents on the chat or here? Also see my comment on the Ircmaxwell's answer – KeyneON Oct 5 '12 at 5:05
@Keyne I agree Lithium's AOP is much more like Intercepting Filters than AOP. – Gordon Oct 5 '12 at 5:55

Yes there is. Check out Lithium. It's basically Cake3, that takes advantage of a lot of the nice PHP 5.3+ features... While it is an OO framework, it does make pretty heavy use of A-O-P concepts...

Some documentation to that effect:

share|improve this answer
As far as I know AOP works very well alongside OOP. That seems like a benefit to me! – Garrett Bluma Jan 20 '11 at 16:47
Is it AOP or AOP-inspired? I mean, is it right to say that dealing with cross-cutting concerns using Intercepting Filters is kind of Aspect-Oriented Programming? I've asked it here also, just for the record. – KeyneON Oct 5 '12 at 4:54

There is one more pure PHP library for AOP integration into any existing PHP application: Go! AOP

Go! doesn't require any PECL-extentions, it neither uses any dark magic of Runkit nor evals, the library doesn't use DI-containers. The code with weaved aspects is fully readable and native, it can be easily debugged with XDebug. You can debug either classes or aspects.

share|improve this answer

ProdigyView has 100% aspect oriented design. http://www.prodigyview.com

Docs for using the design patterns here: http://www.prodigyview.com/tutorials#MongoDB+GridFS+%3A+Database+File+Storage

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.