Test HTTP Requests Tools Blog PHP Quiz API Log In With Github
Test HTTP Requests Tools Blog PHP Quiz API Log In With Github
We have updated the website and our policies to make sure your privacy rights and security are respected.
Click here to learn more about the way our website handles your data.

Remove this message.

How to install and configure PHP-FPM on a cPanel/WHM driven server without breaking everything

Daniel Gheorghe Difficulty: 40 / 50
php-7-cpanel2

In 2015, there was no way to run PHP 7 on a WHM server unless you compiled PHP yourself, but now everything is running smoothly with Easy Apache 4. Learn here how you can provision and configure PHP-FPM with Easy Apache 4.

Read Full Article...

Basic usage of closures in PHP

Daniel Gheorghe Difficulty: 30 / 50
php-closures

In this tutorial I will try to teach you about the basic uses of closures (aka anonymous functions) in PHP. You will learn how closures are used as callback functions and how they can inherit variables from the parent scope.

Closures have been introduced in PHP 5.3 and their most important use is for callback functions. Basically a closure in PHP is a function that can be created without a specified name - an anonymous function. Here's a closure function created as the second parameter of array_walk(). By specifying the $v parameter as a reference one can modify each value in the original array through the closure function.

Read Full Article...

PHP - A primer on the Basic Authorization Header

Daniel Gheorghe Difficulty: 15 / 50
markus-voetter-525896-unsplash

This tutorial will discuss about the http basic authorization header and its many faults and unforeseen traps in conjunction with PHP code.

Read Full Article...

3 solutions for sorting multidimensional arrays by child keys or values in PHP

Daniel Gheorghe Difficulty: 50 / 50
sorted lego pieces

One of the tasks that less experienced programmers find really difficult is to sort multidimensional arrays by one of the values in the child arrays. In today's tutorial I'm going to show you 3 ways of achieving that - you decide which ones seems easier for you and provides the best performance.

Read Full Article...

How to install Node.js and NPM on shared WHM/cPanel hosting account

Daniel Gheorghe Difficulty: 10 / 50
how-to-install-node-js-and-npm-on-a-shared-cpanel-whm-hosting-account

I've noticed that this is a common query among website owners and/or developers. People need to be able to run various JavaScript tasks on a shared hosting environment so I decided to write this short step by step guide.

Read Full Article...

1 2 3