vote up 2 vote down star
1

I have returned to php development from Moose and I really miss CLOS like object model for php. Is there some kind of syntaxtic sugar which would allow me to write less code in php when dealing with objects?

Just to stress this requirement a bit more. I don't want to write one thing in several places. I can live with part of code being generated automatically, but in the code that I have to see to develop I don't want to see redundant information which is just clutter (think: LISP macro if you really need more analogy). So this part can be also called DSL if that makes more sense.

I would love to have at least roles (mixins), and some kind of introspection without re-inventing the weel. Code generators and auto-loaders might be one way to solve at least part of this problem.

p.s. For JavaScript there is Joose, so similar API would be very useful.

flag

67% accept rate
Aside from automatic getters and setters, what other aspects of CLOS would you like to see? Much of what I was able to read about CLOS in the last 5 minutes won't be achievable in PHP. – Peter Bailey Oct 2 '08 at 22:43

2 Answers

vote up 2 vote down check

There are no mixins in php yet but there is an RFC for traits which will work roughly the same. http://wiki.php.net/rfc/traits

Using overloading for __call can allow you to dispatch methods to other classes and have it look like a mixin.

link|flag
Is there any hope to have it in official php any time soon? – dpavlin Oct 6 '08 at 11:52
vote up 1 vote down

The Symfony project has a mechanism for mixins, allowing aspect oriented programming like in CLOS. Personally, I don't like this kind of hacking in userland spacee (At least not with PHP). I think you would be better off using the features that the language provides, and perhaps wait for something like traits to (maybe) make its way into the language.

link|flag
While it does seem like a nice framework, it fails initial requirement of less code, especially __construct in example that you linked. After few readings it still seems completely redundant to me. – dpavlin Oct 3 '08 at 19:07
I don't particularly like it either, but it's there, if you want it. – troelskn Oct 3 '08 at 19:43

Your Answer

Get an OpenID
or

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