This tutorial help to encrypt and decrypt a string using cryptojs and PHP. Cryptojs is a very popular library that is used to convert string data into encrypted text and vice versa.
Php
PHP isset() vs empty() vs is_null()
in this tutorial, I’ll show you how to check if an element has been defined and see if it is empty or null. This php tutorial help to understand difference between PHP isset() vs empty() vs is_null().
Remove Duplicates From Multidimensional Array
In this post, I am going to explain how to remove duplicate values from multidimensional array in PHP. I use array_unique() to get unique but its work on single-dimensional array, not able to work on multidimensional arrays. You can remove duplicates from the multidimensional array by value in PHP.
How To Add Elements to an Array in PHP?
This PHP tutorial help to add an element or array of elements into an array. PHP has a number of built-in functions to add elements into an array. We can combine two or more arrays to create a new (all-combination) array.
Convert XML to Array in PHP Using XML2Array
in this post. I am going to tell you about converting XML file data into PHP array, I am using XML2Array libs, I am also letting you know how to convert XML to array without any libs as well.