PGoCareerGoCareer prep tools
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

PHP · Theory

Constructor

← All stacks

Theory

56/352

Constructor

Constructor is a PHP topic. In plain words you use it for class Student in a small OOP file. Don’t start with a slogan — start with that picture.

Smallest example: new Student('Asha', 72). Type it, run it, and say what you see. If you can do that from memory, you know Constructor.

From the example next to this theory — Constructor property promotion keeps simple classes short.

Trap — public everything. Fix that before you talk about advanced PHP.

Viva — what is Constructor? Then show new Student('Asha', 72). Then name the trap.

Diagram
Exam tip

What is Constructor? Show this: new Student('Asha', 72). Trap: public everything.

Example

<?php
class User {
  public function __construct(private string $name) {}
  public function hello(): string {
    return "Hello, {$this->name}";
  }
}
echo (new User("Ravi"))->hello();

Constructor property promotion keeps simple classes short.

Short notes

  • DefConstructor — class Student in a small OOP file.
  • Rulenew Student('Asha', 72)
  • Trappublic everything
  • Usea small OOP file

Questions

1

What is Constructor?

2

Give one small example of Constructor.

3

What mistake do beginners make with Constructor?

4

Where do you use Constructor?

56 / 352

P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.