Implode and Explode in PHP 7

This tutorial help to understand implode and explode differences underneath of php 7.The implode is used to join elements of an array with a string.The explode is used to split the string data into an array using delimiter string. What’s Difference between explode() and implode() The explode() function is used to breaks a string into […]

Continue reading


How to Configure supervisord on Linux for Laravel Jobs Queue

This quick tutorial help to configure Supervisor with Lumen application on Linux.I have already shared tutorial about Queue and Run Jobs using worker in Lumen/Laravel Framework. Supervisor is a process monitor for the Linux operating system, which will automatically restart your jobs queue using queue:listen or queue:work commands if they fail. You can install Supervisor […]

Continue reading