01-24-2008, 11:53 PM
|
#6 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
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
|
|
|
|