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
誰かがここでドキュメントが言っていることを親切に説明できますか?
ありがとう。