vote up 8 vote down star
3

Hi hi, I'm looking for a easy to learn php library to use for my coming web app project. I've recently finished a web app with fully handwritten raw php code and it's absolutely hard to be done again for another project.
even though I have the recent project code snippets to be used again, but due to their non-structural arrangement (not object oriented), i have no passion to use 'em again.
I have no experience with common frameworks like ZF, CakePhp, CodeIgniter, so I think to get my hands on a multipurpose OO library for my web app and the framework learning will be the next step! any suggestion?

UPDATE:
Many thanks guys, I have not enough time to get through the depth of every lib or framework you have kindly introduced. Since I'm going one step further I'm going to use ZF as famous framework which could provide me more job opportunities perhaps. thankssss :)

flag

7 Answers

vote up 7 vote down check

Even thou you said lightweight, I suggest you get started with Zend Framework. You don't have to use all the ZF libraries, just go with the basic ones and get acquainted with the ones you think can ease your development process. It's easy to get started as well.

link|flag
ain't it so hard or time-consuming to learn? actually i have to deliver the project in 10 days, and i'm scared :( – artarad Mar 24 at 17:02
+1 ZF is the way to go. – vartec Mar 24 at 17:06
Ten days are not enough to learn the framework, but in ten days you will not learn any framework. However, if you're in to PHP there will probably be no problem for you to adapt to the ZF lifestyle ;) – Björn Mar 24 at 17:09
ofcourse it's not enough, but I mean 10 days to learn and use the basic features to satisfy the needs of every basic web application. thanks Bjorn :) – artarad Mar 24 at 17:12
From my experience 10 days is more then enough to roll out simple application following the quickstart manual. – vartec Mar 24 at 17:16
show 1 more comment
vote up 6 vote down

CodeIgniter is very lightweight and flexible. But if you're using PHP5 you might want to check out Kohana, which is a PHP5 fork of CodeIgniter and takes advantage of some of PHP5's features.

link|flag
yes I'm using php5. thanks for the suggestions, I'm checking. – artarad Mar 24 at 17:01
Having used both Kohana and CodeIgniter, I didn't really see a benefit to using one over the other. Other than CodeIgniter has way better documentation. – Jayrox Mar 24 at 17:33
It's pretty easy to pick up CI, thanks to its nice user guide and forum. – andyk Mar 24 at 19:27
vote up 5 vote down

Actually I do recommend ZF, too. but you can consider these resources anyways: Nice Dog, Konstrukt, Doctrine (ORM), CoughPHP (ORM) and Yii framework ofcourse. As a note I think that the learning process of CakePHP is easier than ZF but as the others said ZF has an another story ;)

link|flag
thanks sepehr, could you tell me what's the benefit of a ORM framework over the others? – artarad Mar 24 at 17:41
welcome, An ORM framework has the ability to encapsulate the database concepts into classes & objects, so you will have a easier dev phase struggling not with db tables. for more, let's take a look at this article: is.gd/oKnD – Sepehr Lajevardi Mar 24 at 17:51
Actually ORM is not a necessity for developing simple web applications such as a membership system. – Sepehr Lajevardi Mar 24 at 17:53
vote up 4 vote down

Look into Yii Framework its PHP5 only, relatively new but I believe the authors (who wrote other frameworks before this one) took the best of all worlds and baked it into Yii.

link|flag
wow, nice! yiiframework.com/performance – artarad Mar 24 at 17:29
Do notice that Yii uses the APC extension to enhance performance, which often is not installed on hosted environments. If it's your server you can install it of course. – Björn Mar 24 at 17:39
nice note dur to I'm on a shared one. – artarad Mar 24 at 17:40
vote up 3 vote down

What do you exactly mean by lightweight?

Well, anyways I'd recommend you reconsider Zend Framework. There is nice quickstart document. As ZF is so complete, you don't loose any time on reinventing the wheel and can roll out new products within days. Also you have to take in account that it's the most popular framework and the only one with support from Zend Technologies. So it's likely that it'll stay on the market. With other you can't really be sure.

link|flag
by lightweight I mean not very wide & hard to learn. thanks you vartec :) – artarad Mar 24 at 17:14
1  
Well, ZF covers a lot, but there is no need to know everything about ZF to create simple application. For simple application you'll need some 5% of ZF. – vartec Mar 24 at 17:19
vote up 2 vote down

I've written a super! simple framework called Penny. It's as lightweight and easy to learn and use as anything you'll find. It gives you clean URLs and the ability to do a lot of the basic things you want from a framework. It also has as shallow a learning curve as any tool I've ever used though. Worth a look.

Check it out: http://www.laranevans.com/software/penny/

link|flag
Nice work Laran, but the lack of a good documentation might prevent it to be a useful for some. – Sepehr Lajevardi Mar 24 at 21:02
could you show me an example or something please? – artarad Mar 24 at 21:25
vote up 1 vote down

I've heard nice things about Kohana, it's supposed to fit the lightweight profile.

link|flag

Your Answer

Get an OpenID
or

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