vote up 14 vote down star
24

Even with a ton of PHP frameworks out there to choose from, I know many people prefer a minimal, personal set of libraries. What is your method when it comes to 'rolling your own' framework for PHP applications, and how does it vary depending on the type/scope of a project?

What does your script look like for a typical page? What is your file structure? What 3rd party libraries/components do you commonly use, and how do you keep your libraries, functions, classes organized?

Do you address/implement:

  • DB abstraction
  • REST
  • OOP
  • MVC

and if so, how?

At what point do you consider using a more popular, existing framework (eg. Codeigniter) instead?

Things that got me thinking:
The no-framework PHP MVC framework
What PHP application design/design patterns do you use?
Whats A Good Standard Code Layour for a PHP Application?
Scalable and Flexible Directory Structure for Web Applications

flag

i had a "no framework" PHP framework, but converted it to an open source framework code.google.com/p/samstyle-php-framework – thephpdeveloper Nov 3 at 13:24

11 Answers

vote up 0 vote down

I like flourish

link|flag
vote up 1 vote down

I made this one for my own personal use, it consists of only 4 functions:

  • DB()
  • Route()
  • Singleton()
  • View()

It's inspired by NiceDog and DiBi. I use it primarily for simple websites and APIs, and I find the DB() function quite useful because it's quite easy to implement (zero configuration) and supports all the following features:

  • SQLite 3
  • Arrays for SELECTs
  • Last Insert ID for INSERTs
  • # of Affected Rows for UPDATEs, DELETEs, ...
  • Prepared Statements and Escaping similar to DiBi

I haven't written any documentation for this but it should be pretty easy to understand if you study the code for a couple of minutes.

PS: I only use this "framework" for test cases and sometimes for low traffic stuff, a full featured framework should be used if you're doing something serious.

link|flag
vote up 1 vote down

This is my own invention, please don't downmod me for that. I used it for the web UI on an embedded device for Cisco and it worked flawlessly. It's size at 60 lines was advantageous both from a disk and processor perspective on embedded Linux:

http://code.google.com/p/barebonesmvc-php/

link|flag
vote up 1 vote down

My take on this has evolved over 9 years into a set of libraries (not a framework) that I am in the process of publishing: http://github.com/sandeepshetty/bombay/

I'm old school and know that good design is possible in any paradigm. I prefer using multiple paradigms and hate being locked into any one (I'm looking at all you OO-for-OO-sake frameworks).

Not much of a MVC fan since it doesn't feel like the right approach to web programming. However, I do believe in separating code from presentation and my approach is heavily influenced by REST and what I like to call Resource Oriented Programming. For me, the web site IS the API.

A note on file structure: I prefer modularity and try to keep my resource handlers self-contained so that they can easily be reused in other projects by coping them. This means that you won't find top level folders like views, controllers or models. Instead, I have top level folders like libraries and handlers (which further contain sub-folders per handler with all the code and templates that it needs).

link|flag
vote up -1 vote down

I just about never touch php without the use of smarty. This by itself enforces a bit of structure to the app (though not terribly much) and smarty can be put to a tremendous amount of work.

link|flag
Hmmm, interesting. I've read a lot of people saying that Smarty is unnecessary—an abstraction too many. – Abi Noda Mar 30 at 22:31
with almost no other work, smarty gives a clean separation between logic and presentation. Since I don't really drink ORM kool-aid, my models mostly end up as sql. Thats as much as i need for a mid-size project. – TokenMacGuy Mar 31 at 1:58
vote up 1 vote down

Currently, I maintain two projects built without an external framework. One is my blog, written a long time ago in two days and improved from time to time since then. The code is short, simple, fast and works, but is a bit messy and more complex functionality is hard to add in an elegant way (in fact, it was written to be rewritten as soon as possible, but it works for 4 years now :)). The only external libraries are GeSHi for syntax highlighting and OPT template engine.

Another project is a CMS with a small MVC core. It uses OPT, dedicated form processing tool and PDO extended with caching features and small improvements that speed up the programming. It also will be rewritten some day.

link|flag
vote up 0 vote down

I'm making my own framework to use.

I've set standards for the following,

standard datatree multidemensional array

standard way to process get/post data

then I build modules that work with each other and can be combined to make larger programs

e.g. a page program that handles the display of a page with several components.

that uses a html-text component, and image component and even a video component, and can use any other type of content I would want in the future.

the page system works in tandem with a navigation system, and they all work with a version control module.

Each time I build a site I consider how to make it out of reusable modules.

I do the same thing with my javascript functions so as I go I"m building my own framework over time.

I think that I can make decisions about my framework that make them more effective for my use than any prebuilt framework would, because when I build it for myself I can take alot of options off the table, things needed for projects that are outside my core market, that's what makes a custom framework more effective over a generalized one, it can be more specific.

link|flag
1  
I think building your own will teach you a lot. I tried to do the same and found it very useful. In the end I got bored of reinventing the wheel though, so these days I use Code Igniter. – Jon Winstanley Mar 29 at 21:16
Downvote me if you like, I believe in custom solution based programming, what has programming come to when programmers just reuse other peoples code. – Fire Crow Mar 29 at 23:32
"what has programming come to when programmers just reuse other peoples code" I'd say it's coming to what any other normal, respectable engineering task already is. – Adriano Varoli Piazza Apr 1 at 15:21
Thanks, that explains a lot. – Fire Crow Apr 1 at 21:34
vote up 10 vote down

Most of the time I use CodeIgniter, but there are times when I just need to make a quick change/addition to something which is already up and running.

In an ideal world, this is the no-framework framework I'd like to use one day:

  • app
    • controllers
    • models
    • views
    • config (db config, etc)
    • emails (templates for emails sent out by the system)
    • lib (common class files for pagination, db stuff, etc)
  • index.php (Front controller)
  • .htaccess

In the real world, with deadline constraints, this is how i actually end up doing thngs (however someday I'm going to build the framework I mentioned above):

  • app
    • script.php
    • another-script.php
    • yet-another-script.php
    • admin
      • login.php
      • users.php
      • something-else.php
    • inc
      • db-config.php
      • Db.php (Database class)
      • Auth.php (user auth. class)
      • functions.php (functions common throughout the system)
      • ........
link|flag
In the deadline world, we just have to do, no matter how! very very nice separation. – Sepehr Lajevardi Apr 11 at 3:02
vote up 3 vote down

You might want to check some minimalistic PHP Frameworks:

I think they are simple, clean and fast enough.

Any of them will allow to use any model or object relation mapping (ORM) tool (like Propel, Doctrine, CoughPHP, etc...), althought Simple PHP Framework features a basic Active Record based model.

link|flag
vote up 0 vote down

For any medium-size sites i tend to go with a good framework that fits the role - CI is usually a good choice.

For small pages, i have my own implementation of an ultra-lightweight (and fast) MVC "framework". It's not really a framework, as all it does is request routing/dispatching but it allows me to have a site structure very similar to, for example, CodeIgniter:

app/
 myMvcLib.php
 controllers/
 models/
 views/
public_html/
 index.php

As for DB abstraction (again, on very small sites) i feel using PDO (using OOP) provides me with enough functionality to get things done, and quickly enough.

link|flag
If you wanted more DB abstraction, would you build it using PDO? – Abi Noda Mar 29 at 17:51
Probably, yes. i don't see PDO having a major effect on speed over "regular" DB drivers and i feel the standard interface helps keeping the code clean. – jcinacio Mar 29 at 20:00
vote up 1 vote down check

I found a Simple PHP Framework...and it looks like a fantastic "no framework" framework ;)

link|flag

Your Answer

Get an OpenID
or

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