<?php namespace com\getinstance\util; class Debug { static function helloWorld() { print "Привет, из класса Debug!\n"; } } Debug::helloWorld(); require_once 'global.php'; class Lister { public static function helloWorld() { print "Привет из " . __NAMESPACE__ . "\n"; } } Lister::helloWorld(); \Lister::helloWorld(); namespace main; use com\getinstance\util\Debug; Debug::helloWorld();