Posts from PHP

Multidimensional Arrays In PHP

By Sanketh

Hey Guys, In this tutorial, you are going to learn about creating and using Multidimensional Arrays in PHP programming language. What are Multidimensional Arrays: Multidimensional .... Read More

How to change month number to month name in PHP

By Ujwal Kumar Sahoo

In this article, we will discuss how to change the month number to month name using PHP. It can be done in many ways, from that following methods are covered in this article, using.... Read More

How to extract email addresses from a string in PHP?

By Ujwal Kumar Sahoo

In this article, we will discuss how to extract an email address from a given string in PHP. First of all, we have to understand what is a valid email address. See also, Email vali.... Read More

How to convert an image to binary image in PHP?

By Ujwal Kumar Sahoo

In this article, we will discuss how to convert a raw image to a binary image in PHP. First of all, we will discuss what exactly a binary image is. What is a binary image? A binary.... Read More

How to decrypt md5 password in PHP?

By Ujwal Kumar Sahoo

In this article, we will discuss how to decrypt the md5 password in PHP. Before that, let us see how to encrypt the password by md5 hashing. How to encrypt the password in PHP? In .... Read More

Ways to exit from a foreach loop in PHP

By Ujwal Kumar Sahoo

In this article, we will focus on the different exit methods from the foreach loop in PHP. Before that, we will discuss what exactly a foreach loop is. What is a foreach loop in PH.... Read More

Convert an image to grayscale using PHP

Convert an image to grayscale using PHP

By Ujwal Kumar Sahoo | July 5, 2019

In this article, we will discuss different methods to convert an image into a grayscale image in PHP. We will discuss both the predefined method as well as the user-defined methods. Convert an image to grayscale in PHP using predefined methods PHP introduced predefined effects for image manipulation. Example:- Using imagefilter() methods,  such as-IMG_FILTER_GRAYSCALE, IMG_FI Read More

Find the distance between two places using latitude and longitude in PHP

By Ujwal Kumar Sahoo

In this article, we will see how to calculate the distance between two places or points using latitude and longitude in PHP. Basically, the distance is calculated using latitude an.... Read More

Related Posts