Short-circuiting in PHP

Short-circuiting in PHP refers to the behavior of logical operators (&&, ||, and their shorthand equivalents and and or) where the evaluation stops as soon as the final outcome of…

What is type hinting in PHP?

Type hinting in PHP refers to the practice of specifying the expected data types for function arguments, return values, and class properties.

All about APIs

APIs are the intermadiator between client & server. It can pass data which can be understood by Desktop app or Mobile app or any other web app.

MVC

Custom MVC framework Logic

There are 5 pillars of any MVC framework. 1) Router2) Validator3) Database4) Template Engine5) Container

Laravel Concept

If you want to start with Laravel.. Check this as a short intro.

Abstract Class vrs. Interface

OOP Pillars

The 4 pillars of OOP are 1) Encapsulation 2) Abstraction 3) Inheritance & Polymorphism. Here are some basic explanation of each why to use and where to use.

What is namespace in PHP?

If you have same named function in functional programming, it’s not accepted but yes you can create same named function in different class. Now what about the class name? What…

Database Normalization

Normalization is a process to bifurcate the excel data or bunch of data into different tables and makes a relationship between those tables.