rfc:namespace-importing-with-from
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
rfc:namespace-importing-with-from [2012/07/24 15:10] – Enhance namespace importing with from syntax reeze | rfc:namespace-importing-with-from [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Request for Comments: Enhance Namespace Importing | + | ====== Request for Comments: Enhance Namespace |
* Version: 1.0 | * Version: 1.0 | ||
* Date: 2012-07-24 | * Date: 2012-07-24 | ||
- | * Author: Reeze Xia <reeze.xia@gmail.com> | + | * Author: Reeze Xia <reeze@php.net> |
* Status: Under Discussion | * Status: Under Discussion | ||
* First Published at: https:// | * First Published at: https:// | ||
Line 8: | Line 8: | ||
===== Introduction ===== | ===== Introduction ===== | ||
- | This RFC proposes adding a new syntax <code php> | + | This RFC proposes adding a new syntax <code php> |
+ | This syntax is used to import multiple symbols from a common namespace cleanly. | ||
It will make namespace importing easier and reduce deplication. | It will make namespace importing easier and reduce deplication. | ||
Line 18: | Line 19: | ||
<code php> | <code php> | ||
<?php | <?php | ||
- | use Top\A\Long\Namespaced\ClassA; | + | use GlobalNamespace\SubSpace\ThirdSpace\Class1; |
- | use Top\A\Long\Namespaced\ClassB; | + | use GlobalNamespace\SubSpace\ThirdSpace\Class2; |
- | use Top\A\Long\Namespaced\ClassC; | + | use GlobalNamespace\SubSpace\ThirdSpace\ForthSpace\Class3; |
</ | </ | ||
Line 28: | Line 29: | ||
<code php> | <code php> | ||
<?php | <?php | ||
- | from Top\A\Long\Namespaced\NS | + | from GlobalNamespace\SubSpace\ThirdSace |
</ | </ | ||
Line 151: | Line 152: | ||
* 2012-07-24 Initially created by Reeze Xia | * 2012-07-24 Initially created by Reeze Xia | ||
- |
rfc/namespace-importing-with-from.1343142628.txt.gz · Last modified: 2025/04/03 13:08 (external edit)