Author Topic: What frameworks does the majority of phpfreaks use?  (Read 1452 times)

0 Members and 1 Guest are viewing this topic.

Offline littlevisualsTopic starter

  • Enthusiast
  • Posts: 53
  • Gender: Male
  • Clever Girl...
    • View Profile
What frameworks does the majority of phpfreaks use?
« on: July 18, 2009, 05:47:29 PM »
Hi all,

Im currently developing an app from scratch, but from what ive read i might use a framework for obvious reasons in the future.

I'm thinking of using codeigniter, for its simplicity.

Every one has its pro's and con's and ive read other peoples opinions on various blogs, my question is what framework(s) do you guys use and the main reason for it?   :D





A lot of hacking is playing with other people, you know, getting them to do strange things.
Steve Wozniak

Offline littlevisualsTopic starter

  • Enthusiast
  • Posts: 53
  • Gender: Male
  • Clever Girl...
    • View Profile
Re: What frameworks does the majority of phpfreaks use?
« Reply #1 on: July 18, 2009, 05:52:50 PM »
Well tried cake, zend and codeigniter, briefly

Looks like ill be using CI  ;)
« Last Edit: July 18, 2009, 05:58:47 PM by littlevisuals »
A lot of hacking is playing with other people, you know, getting them to do strange things.
Steve Wozniak

Offline Daniel0

  • Administrator
  • 'Insane!'
  • *
  • Posts: 11,815
  • Gender: Male
  • ^bb|[^b]{2}$
    • View Profile
Re: What frameworks does the majority of phpfreaks use?
« Reply #2 on: July 19, 2009, 11:33:09 AM »
Personally, I use Zend Framework, and it's also the framework I used when developing the main site.

Offline tomdelonge

  • Enthusiast
  • Posts: 57
    • View Profile
Re: What frameworks does the majority of phpfreaks use?
« Reply #3 on: July 27, 2009, 08:03:52 PM »
I used to use zend framework, but I love codeigniter. I'm sticking with that.

Offline fabrydesign

  • Enthusiast
  • Posts: 77
  • Gender: Male
  • FD
    • View Profile
    • fabrydesign
Re: What frameworks does the majority of phpfreaks use?
« Reply #4 on: July 27, 2009, 11:38:38 PM »
I've been learning CakePHP and it's very well documented and has a pretty active IRC channel that's generally helpful.

Offline roopurt18

  • Guru
  • Fanatic
  • *
  • Posts: 3,658
  • Gender: Male
  • le sigh
    • View Profile
    • rbredlau
Re: What frameworks does the majority of phpfreaks use?
« Reply #5 on: July 28, 2009, 12:03:33 AM »
I spent a little time looking at cakephp and zend framework, but to be honest I didn't like either of them.

There's too many ways to accomplish the same task and not enough clear examples on which is the best supported, which is deprecated, etc.  Also since portions of the framework are designed by different people they don't always follow the same code conventions.  I spent probably a week or two on each one and really just found them confusing.

When I started at my current job I wrote my own framework in a couple of days that accomplishes everything I need.  It uses a Controller-View design and no Model.  I've slowly added onto it over time and I'd say it's probably got 10 or 12 classes and half a dozen libraries (static classes).  Setting up a new site takes me about half an hour and from then on out I only have to work on the site at hand.

Basically I couldn't justify spending weeks of my time learning ever-changing existing frameworks when I knew I could write one better suited to my needs in less time.

Lately I've been toying with the idea of incorporating Propel or Doctrine into my projects, but I really can't seem to justify it.

Offline Zyx

  • Enthusiast
  • Posts: 127
  • Gender: Male
    • View Profile
    • Invenzzia open-source group
Re: What frameworks does the majority of phpfreaks use?
« Reply #6 on: July 28, 2009, 01:48:52 AM »
I use Zend Framework with some addons, but I also made one website on Kohana.
My open-source projects:
Open Power Template - template engine for PHP
TypeFriendly - documentation and user manual builder

Online Dj Kat

  • Addict
  • Posts: 1,507
  • Gender: Male
    • View Profile
Re: What frameworks does the majority of phpfreaks use?
« Reply #7 on: July 28, 2009, 08:03:07 AM »
ZF in combination with Doctrine for me and still learning. I tried some cakePHP but I prefer ZF.

Offline gevans

  • Addict
  • Posts: 2,649
  • Gender: Male
  • don't shoot the messanger
    • View Profile
    • Guernsey Web Design
Re: What frameworks does the majority of phpfreaks use?
« Reply #8 on: July 28, 2009, 01:27:27 PM »
I used to use a very lose framework I put together, it was more a library for basic tasks, db, content output, validation, session control, uer control. I wanted to find something better really so looked at cake and CI, really didnt get on with cake but found CI very easy to pick up, and a very flexible system (flexible in the right places anyway)
I like starting my code with session_start();

Code: [Select]
ini_set('display_errors', 1);
ini_set('error_reporting', E_ALL);
Son of a biscuit eating bulldog
Use [code][/code] tags!!

Offline extrovertive

  • Enthusiast
  • Posts: 241
    • View Profile
Re: What frameworks does the majority of phpfreaks use?
« Reply #9 on: August 06, 2009, 04:17:54 AM »
Zend Framework is the best and most flexible one there is. Plus, it's from by Zend, duh!

Offline waynewex

  • Addict
  • Posts: 2,364
  • Gender: Male
    • View Profile
    • Web Design Wexford
Re: What frameworks does the majority of phpfreaks use?
« Reply #10 on: August 06, 2009, 05:10:35 PM »
Code Ignitor seems to have very very good beginners documentation in place.