View Single Post
Old 01-25-2008, 07:52 AM   #8 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

quick example:

PHP Code:
namespace DB_MySQL
{
    class 
DB { ... }
}

namespace 
DB_Postgre
{
    class 
DB { ... }


and some sort of usage:

PHP Code:
if( driver == 'postgre' ) use namespace DB_Postgre;
else use namespace 
DB_MySQL;

$db = new DB();
[
more stuff

This is just a prototype of what can be done.
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote