23 lines
197 B
PHP
23 lines
197 B
PHP
|
<?php
|
||
|
|
||
|
namespace HELLO {
|
||
|
|
||
|
/**
|
||
|
* Does something really cool!
|
||
|
*/
|
||
|
function world() {
|
||
|
|
||
|
}
|
||
|
|
||
|
\HELLO;
|
||
|
}
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
define('HELLO', true);
|
||
|
|
||
|
HELLO;
|
||
|
|
||
|
HELLO\world();
|
||
|
}
|