Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

William Candillon's Blog:
PHP source code analysis: PHPCompiler versus Yaxx
Jun 20, 2006 @ 10:48:27

From William Candillon today on the "Yet another PHP blog", there's his comparison at the source coude level of PHPCompiler versus Yaxx.

Before I choose yaxx and XML tools for code source transformation, I looked very attentively the phpCompiler project.

The main goal of phpCompiler is to translate PHP code directly into Linux assembly code (and they are apparently very close to it).

He mentions, though, that phpCompiler just doesn't fit what he's trying to do. He needs things like portability between platforms and a simple way to extend the PHP lexer and grammer for phpAspect. Unfortunately, phpCompiler either doesn't allow these or just makes them too difficult. He makes his choice for his situation - Yaxx

tagged: compiler yaxx phpcompiler features aspectphp source compiler yaxx phpcompiler features aspectphp source

Link:

William Candillon's Blog:
PHP source code analysis: PHPCompiler versus Yaxx
Jun 20, 2006 @ 10:48:27

From William Candillon today on the "Yet another PHP blog", there's his comparison at the source coude level of PHPCompiler versus Yaxx.

Before I choose yaxx and XML tools for code source transformation, I looked very attentively the phpCompiler project.

The main goal of phpCompiler is to translate PHP code directly into Linux assembly code (and they are apparently very close to it).

He mentions, though, that phpCompiler just doesn't fit what he's trying to do. He needs things like portability between platforms and a simple way to extend the PHP lexer and grammer for phpAspect. Unfortunately, phpCompiler either doesn't allow these or just makes them too difficult. He makes his choice for his situation - Yaxx

tagged: compiler yaxx phpcompiler features aspectphp source compiler yaxx phpcompiler features aspectphp source

Link:

Sebastian Bergmann's Blog:
AspectPHP
Mar 20, 2006 @ 12:54:17

As was mentioned in one of his previous blog posts, Sebastian Bergmann has been working up his own PHP version of an aspect-oriented framework. According to this new post, he's already done some work on the project and has created a page with more information.

As I wrote earlier, I am not satisfied with the Current State of AOP for PHP and started to work on AspectPHP a while ago. Today I am going to share my ideas on the subject.

What sets AspectPHP apart from other implementations of Aspect-Oriented Programming is its simplicity: aspects are plain PHP classes that declare pointcuts using annotations.

He gives an example of this kind of functionality, including a bit of code to illustrate. The example logs all method calls and, in this case, simply outputs them to the browser.

Unfortunately, he also mentions that, at this time, he doesn't have any code for the framework that he can release, but you can check out the site he's created for more information.

tagged: aspect oriented programming aspectphp framework logging example aspect oriented programming aspectphp framework logging example

Link:

Sebastian Bergmann's Blog:
AspectPHP
Mar 20, 2006 @ 12:54:17

As was mentioned in one of his previous blog posts, Sebastian Bergmann has been working up his own PHP version of an aspect-oriented framework. According to this new post, he's already done some work on the project and has created a page with more information.

As I wrote earlier, I am not satisfied with the Current State of AOP for PHP and started to work on AspectPHP a while ago. Today I am going to share my ideas on the subject.

What sets AspectPHP apart from other implementations of Aspect-Oriented Programming is its simplicity: aspects are plain PHP classes that declare pointcuts using annotations.

He gives an example of this kind of functionality, including a bit of code to illustrate. The example logs all method calls and, in this case, simply outputs them to the browser.

Unfortunately, he also mentions that, at this time, he doesn't have any code for the framework that he can release, but you can check out the site he's created for more information.

tagged: aspect oriented programming aspectphp framework logging example aspect oriented programming aspectphp framework logging example

Link:

Sebastian Bergmann's Blog:
Current State of AOP for PHP
Feb 13, 2006 @ 13:18:24

Sebastian Bergmann has posted a current state of AOP for PHP summary on his blog today, a look at a few resources and an addition of one of his own.

I know about four existing approaches to faciliate Aspect-Oriented Programming with the PHP Programming Language:

But, as was previously mentioned, he's not happy with the current implementations, so he's working up his own - AspectPHP...

tagged: aspect oriented programming library aspectphp aspect oriented programming library aspectphp

Link:

Sebastian Bergmann's Blog:
Current State of AOP for PHP
Feb 13, 2006 @ 13:18:24

Sebastian Bergmann has posted a current state of AOP for PHP summary on his blog today, a look at a few resources and an addition of one of his own.

I know about four existing approaches to faciliate Aspect-Oriented Programming with the PHP Programming Language:

But, as was previously mentioned, he's not happy with the current implementations, so he's working up his own - AspectPHP...

tagged: aspect oriented programming library aspectphp aspect oriented programming library aspectphp

Link:


Trending Topics: