View Single Post
Old 01-24-2008, 11:53 PM   #6 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

Why do we need Namespaces again?

The only types of namespaces I've worked with were in C++ and that was simply
Code:
#include <iostream>
using namespace std;
// Though you could do the same by putting every single line a std::, some //programmers sometimes use this cause it's lesser bytes of data
In php, though:
PHP Code:
<?php
namespace A;
?>
Never used them myself
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote