The compile-time constant __NAMESPACE__ is defined to the name of the current namespace. Outside namespace this constant has the value of empty string. This constant is useful when one needs to compose full name for local namespaced names.
Example#1 Using __NAMESPACE__
<?php
namespace A::B::C;
function foo() {
// do stuff
}
set_error_handler(__NAMESPACE__ . "::foo");
?>
| Affiliate Directory - Sign Up - Priviledged Members - Articles - Web Resources - Discussion - Contact Us - Link Exchange - HTML4 Manual - HTML3 Manual - PHP Manual |