Just got done typing this and realized it's pretty long-winded; I'm just excited to be able to explain to someone something I love doing! If you have any questions just comment and ask.
If you're willing to code it yourself, go with number 6; modular back-end systems are the way to go. I love designing them! This means you have a piece of code (usually a PHP class and usually called a registry) that loads up other classes (called modules) upon runtime, creating a sort of "api" for your site. This also means your entire system is loaded up with one include, and functionality is obtained through simple calls to your library.
If you get really fancy (like what I've done before) is to plan your modules so they are loaded on the first call made to them.
The way mine is set up is that I have a directory with my modules in it, and the registry (the first thing to be included onto the page) initializes itself and searches that directory for .PHP files, require_once's them and uses the file name for each class to know what the class is called; for example, a file called "mysql.php" contains a PHP class called "mysql" that is instantiated upon runtime.
A simple registry class:
<?php
// This actual code won't work, but it
// gives you an idea of the structure.
final class registry
{
private static $_modules = array();
// Call this first.
public static function init()
{
opendir(); // Open the modules directory
foreach($file as $f)
{
// Read the directory,file by file
if(substr($f, -4) == ".php")
{
// Require it
require_once($f);
$name = substr($f, 0, -4);
// Instantiate (this line WILL work)
$cls = new $name();
// Push it to modules array
self::$_modules[$name] = $cls;
}
}
}
// References a module
public static function m($name)
{
return self::$_modules[$name];
}
}
?>
And a simple module:
<?php
// Again, this exact code won't work,
// but it gives you an idea of the structure.
// This is a php class that would be
// called by the above registry.
final class some_module extends module
{
// You can make your own module class if you'd like.
// Helps with derivation and creating a template
// for modules.
public function __construct()
{
// Instantiation code here
}
public function test()
{
die("Test Module!");
}
public function __destruct()
{
// Destruction code here;
// Good for modules that handle
// MySQL databases or files, because
// you can put calls like mysql_close()
// here. It's very tidy!
}
}
?>
and then, to use the registry, you'll make calls to the registry. This means that after you've designed the backend (with as many different modules as you need), then you can make pages quick and easily. For instance, here's a page that would utilize your backend:
<?php
// This code would, in theory, work.
// This would be a page that includes
// your registry with modules.
require_once("registry.php");
// Initialize the registry;
// This loads all the modules.
registry::init();
// Let's call that function from that module we
// made earlier:
registry::m("some_module")->test(); // Should die with "Test module!"
?>
Why is this ideal, and how is it scalable/fast?
Simple! Once your registry class is complete, you can, in theory, load up modules only as you need them (instead of loading, say, 100 modules on startup). The way you want to handle this is up to you (sometimes I have a boolean in my module base class that indicated whether or not to load automatically or manually).
It's extremely scalable simply because you can add more and more modules to add functionality to pages; some examples are to handle configuration, mysql, sessions, output buffering (which, if you don't know what that is, look it up! It helps with big back end sites like you're describing) site strings (even go as far as language management and translations), and then even modules that affect other modules (like going above and beyond basic mysql functionality to create scripts that do exactly what you want your mysql database to do, like user registry, etc.)
It's ideal simply because you want something that is easy to manage and build on, without being too dirty. Modularized systems like I am describing are perfect for this; they just take a little bit more initial coding to create your registry and some basic modules!
Just a note
Something that may speed up your commands, instead of using registry::m("module")->func(); is to assign a variable with the class; for example:
<?php
$mysql = registry::m("mysql");
$mysql->query("SELECT * FROM `blah`");
?>
This cuts down on typing and code and such.