© 2023 Hashnode
#phpstorm
If you are facing any issues with installing php-gd library on your system then you are at the right place to find the solution. Just follow me for the steps to install gd library. It is not as easy as installing other extensions of php bec…
This guide is about setting up Xdebug version 3. The steps are the same for older versions, but some of the parameters are different in the PHP configuration file. So let's get started. First, downloa…
Packages Laravel Framework I'm trying out Laravel Sail for my local development, this post serves as documenting the process and getting PhpStorm to play nice with Sail. Sail is a tool for using docke…
Working in remote server is a daily stuff for a web developer. Vim, nano or such tools usually take place to work in such environment. They work fine. But, nothing beats experience of a strong IDE. I…
Well, we have learnt enough about class to move a few steps deeper. Here we will be talking about INHERITANCE. Inheritance basically means that another class can take the properties of one class. An e…
What is an IDE? An IDE is a software/application that you can run on your computer. IDE stands for Integrated Development Environment. These IDEs are there to help and make developing easier by having…
An array is a variable that can hold multiple pieces of information within itself. A single array can hold numerous pieces of information like strings, integers, floating points, boolean, etc. all ins…
There are four major and most frequently used data type in PHP. They are String, Integer, Float and a Boolean. As already mentioned earlier, we do not need to assign a data type to the variable, rathe…
One of the greatest sides of PHP variables is that we do not need to define the variable type. The type gets defined immediately after the value has been assigned to it. The type of the data-type that…
PhpStorm, Docker and Xdebug 3 on PHP 8.1 in 2022 How to configure PhpStorm and Xdebug to run PHP in Docker for php-fpm, cli and daemon worker processes in 2022. This article appeared first on https://…