Example:
namespace Somenamespace;
use SomenamespaceSomeclass;
use Somenamespaceotherclass;
class Template{
public function display($templ){
load_template($templ);
}
}
function load_template($file){
unset($file);
require func_get_arg(0);
}
$template = new Template();
$template->display('file.php');
Now I want to access "Someclass" in file.php, without having to declare it first in the "use" statement. eg. someclass::dostuff();
(without the namespace)
Is it possible?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…