Difference between revisions of "PHP/use"
< PHP
Jump to navigation
Jump to search
(Created page with "==About== In PHP, the keyword <code>use</code> has three distinct possible meanings: * importing/aliasing of classoids and other identifiers within namespaces -- see [https://...") |
(No difference)
|
Latest revision as of 14:13, 27 May 2024
About
In PHP, the keyword use has three distinct possible meanings:
- importing/aliasing of classoids and other identifiers within namespaces -- see Using namespaces: Aliasing/Importing
- including traits within classes -- see PHP/trait/use
- inheriting variables in closures