View Single Post
Old 01-25-2008, 01:02 AM   #7 (permalink)
TlcAndres
The Addict
 
Join Date: Nov 2007
Posts: 264
Thanks: 2
TlcAndres is on a distinguished road
Default

As I understand it provides a more generalized body for classes like

PHP Code:
namespace DB;

class 
mysql
{
   function 
blah()
   {}
}

class 
sqlite
{
  function 
blah()
  {}
}

echo 
DB::mysql::blah(); 
TlcAndres is offline  
Reply With Quote