PHP 7 – Null Coalesce Operator

PHP 7 brings a lot of improvements, features and new operators as compared to the earlier versions on PHP. One of the new operators is the Null Coalesce Operator (??). This operator can be used instead of using isset() along with the ternary operator (?:). The Null coalesce operator (??) returns the result of its […]

PHP 7 – Null Coalesce Operator Read More »

How to create a zip file using PHP

How to create a zip file using PHP Read More »

How to create CSV file using PHP

CSV (comma-separated values) is one of the most popular methods for transferring tabular data between applications. Lot of applications want to export data in a CSV file. In this article we will see how we can create CSV file using PHP. We will also see how to automatically download the file instead of just showing

How to create CSV file using PHP Read More »

How to sort a multi-dimension array by value in PHP

How to sort a multi-dimension array by value in PHP Read More »

How to add favicon in WordPress using Jetpack

NOTE: From WordPress 4.3 onwards, it is recommended that you use the Site Icon feature that is built into WordPress, instead of following the guidance below. The Site Icon feature can be found by going to Appearance -> Customize and clicking on Site Identity. In my earlier post Understanding favicon I explained what is a

How to add favicon in WordPress using Jetpack Read More »