Guest User

Untitled

a guest
May 25th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. |--------------------------------------------------------------------------
  5. | 分组使用声明
  6. |--------------------------------------------------------------------------
  7. |
  8. | 可以使用 {} 包含相同路径命名空间。
  9. |
  10. */
  11.  
  12. // PHP 7 之前
  13. use App\Models\User as U;
  14. use App\Models\Point as P;
  15. use App\Models\Album as A;
  16.  
  17. // PHP 7 之后
  18.  
  19. use App\Models\{User as U, Point as P, Album as A};
Add Comment
Please, Sign In to add comment