Author name: thesharif-user

10 Most Common Questions & Answers About Design Pattern (implemented by PHP)

Introduction Most of the time for my learning I create simple note. This article is also one of my note for learning design pattern in PHP. To write this article I’ve taken help from a various websites and used natural language processing tools. So, let’s learn together🤓! Q1: What is the Singleton pattern? Explain its …

10 Most Common Questions & Answers About Design Pattern (implemented by PHP) Read More »

Factory Design Pattern in PHP

The Factory design pattern is a creational pattern that provides an interface or a method for creating objects, encapsulating the object creation logic from the client code. This makes it easier to instantiate objects without having to know the exact details of how they are created. The Factory pattern is useful when the creation of …

Factory Design Pattern in PHP Read More »

Array Manipulation in PHP

PHP array is a fundamental data structure used in web development. They can store multiple values and be manipulated in various ways using built-in functions like sorting, filtering, searching, and merging. By mastering array manipulation, developers can build efficient applications that can handle large data sets. Some example of array manipulation in PHP: 1. Array …

Array Manipulation in PHP Read More »

Scroll to Top