Namespaces in PHP — a practical guide to PHP namespaces with clear examples you can reuse in real projects.
OOP Tutorial Series (42/65). Prefer one article? Read the complete OOP tutorial.
Short description
Namespaces map well to folder structures and Composer PSR-4 autoloading.
Namespace example
namespace AppBilling;
class Invoice {}
// elsewhere:
use AppBillingInvoice;
$invoice = new Invoice();