47 lines
464 B
PHP
47 lines
464 B
PHP
<?php
|
|
|
|
namespace HELLO {
|
|
|
|
/**
|
|
* Does something really cool!
|
|
*/
|
|
function world() {
|
|
|
|
}
|
|
|
|
\HE
|
|
}
|
|
|
|
namespace {
|
|
|
|
/**
|
|
* Lorem ipsum dolor sit amet.
|
|
*/
|
|
define('HELLO', true);
|
|
|
|
HELLO\world();
|
|
}
|
|
<?php
|
|
|
|
namespace HELLO {
|
|
|
|
/**
|
|
* Does something really cool!
|
|
*/
|
|
function world() {
|
|
|
|
}
|
|
|
|
\HE
|
|
}
|
|
|
|
namespace {
|
|
|
|
/**
|
|
* Lorem ipsum dolor sit amet.
|
|
*/
|
|
define('HELLO', true);
|
|
|
|
HELLO\world();
|
|
}
|