When we write a client to integrate an API in our systems it is important to test it to be sure we can handle every
Category: php
Best new features in PHP 7.4
On 28th of november PHP 7.4 has been released. Here’s my favourite features! Spread Operator for Arrays No more array_merge(). With the spread operator you
[PHP] Print fibonacci sequence using recursion
Fibonacci sequence is a infinite series of numbers where each item is the sum of the two preceding ones, starting from 0 and 1.I have written