从 php 文档中,我们访问全局类,例如
<?php
namespace A\B\C;
class Exception extends \Exception {}
$a = new Exception('hi'); // $a is an object of class A\B\C\Exception
$b = new \Exception('hi'); // $b is an object of class Exception
$c = new ArrayObject; // fatal error, class A\B\C\ArrayObject not found
?>
但是,当医生这么说时,我迷路了
<?php
$a = new \stdClass;
?>
在功能上等同于:
<?php
$a = new stdClass;
?>
这里http://php.net/manual/en/language.namespaces.faq.php#language.namespaces.faq.shouldicare
有人可以解释一下医生在这里说什么。
谢谢。