Other than standard OO concepts, what are some other strategies that allow for producing good, clean PHP code when a framework is not being used?
|
11
|
|||
|
|
|
Remember: MVC, OOP and tiers are design concepts, not language constructs, nor file-structuring. For me, this means that when not using a framework, and when there's not different teams for programming and designing; there's no value in using another template system on top of PHP (which is a template language). Also, separating code from layout doesn't necessarily mean doing it on different files. This is how i used to do for one-off, seldom expanded, PHP web apps:
that's your 'framework', then you write the 'presentation' layer:
and that's it. If working alone, it has all the separation of intents you need, without drowning in a lot of files for a single user action. Each page as seen by the user is managed by a single PHP file. It's even easy to maintain, after a few months without looking at the code, since it's easy to test the app, taking note of the filenames in the URL field of the browser. This guides you directly to the relevant code. (nowadays, of course, i'm using Django for almost everything...) |
||
|
|
|
|
I'd say pretty much the same as for any other language:
|
||
|
|
|
Really this question is quite language agnostic, as it applies to most languages where you choose to "roll your own". Two suggestions I would make would be : Firstly, just because you aren't using a framework doesn't mean you can't adopt the patterns for segregating code. The MVC pattern is the minimum you should consider when arranging you source code - it makes for a much cleaner and easier to maintain collection of source code, even if the application doesn't entirely follow the routing processes associated with frameworks, having code that "does" things separated out from that which "represents" things is very beneficial. Secondly, just because you've chosen not to use a full framework, doesn't mean you need to reinvent the wheel. Utilise pre-packaged libraries sensibly in order to solve a specific problems. Two good examples would be a logging framework (log4php) and a front-end rendering/templating solution (Smarty). |
||
|
|
|
If you really do follow OO concepts, like separation of concerns, your code will be pretty good, but here are a few suggestions:
|
||
|
|
|
|
Stay away from globals as best as possible :-D |
||
|
|
|
|
make sure to follow standard practices of separation of concerns. What this means is try not to mix you business and data layer with your UI. |
||
|
|
|
|
Even If you don't use a framework, use a template engine. By using templates, you'll seperate the logic and presentation of your application. Then design, code and format the logic part like what you would do with any other language. Make the "designers" design the user interface :) |
||
|
|
|
OO is not strictly necessary: it was possible to write good code in PHP < 5 too. Good procedural code, well separated into files and directories by 'logical distance' should also keep you safe. Notice, though, how this starts resembling OO from afar. Best thing would be to be consistent: I've seen a project where Smarty was used in most pages except one -the most complex, go figure-. |
||
|
|
|
Take advantage of PHP's in-built extensions - MySQLi for example. As these become more object-oriented the requirement for frameworks becomes less. For example, I could create a useful TwitterApp by using the following extensions and no actual framework besides a core class to tie instances together.
I might need to make a few helper classes for things like Login but my usual pair of classes (DAL and TPL) are made obsolete by two very well worked extensions. |
||
|
|
|
|
I know this is a question, not an answer, but will you provide some details of why you would opt not to use a framework? I mean, in order to produce good code, you're going to be more or less rolling your own custom framework anyway. I'm curious to hear your reasoning. |
||||
|
|
|
If you ever find yourself mixing HTML and code, just STOP. You're, well...
|
||||||
|

