f5569e4755
I think this dir shouldn't have anything non-necessary in the root.
21 linhas
328 B
PHP
21 linhas
328 B
PHP
<?php
|
|
namespace TestNs;
|
|
|
|
// Warning: line numbers are sensitive, do not change
|
|
|
|
function foo($x) {
|
|
$y = $x.'_suffix';
|
|
\error_log($y);
|
|
}
|
|
|
|
class cls {
|
|
public function pubObj($x) {
|
|
\error_log("pubObj:".$x);
|
|
}
|
|
public static function pubCls($x) {
|
|
\error_log("pubCls:".$x);
|
|
}
|
|
}
|
|
|
|
\error_log('break_t3.php loaded');
|