Concept Flow - Object instantiation with new
Define Class
Call new ClassName()
Allocate Memory for Object
Run Constructor (if any)
Return Object Reference
Assign to Variable
Use Object
This flow shows how PHP creates a new object: it defines the class, calls new, allocates memory, runs the constructor, returns the object, and assigns it to a variable.