PHP internalization with Gettext and Docker

How to configure Gettext using PHP and Docker One thing that sets apart software applications is internalization. Developers often overlook the importance of internalization of their app. Let’s set that up. The Docker part (likely what you are looking for) Fortunately, there are open source tools that make translation of your app easy. Consider using […]

Boost your PHP with Opcache

Performance is king use Opcache PHP extension What is Opcache and what’s in it for my app? Opcache is an extension for PHP that is used to improve the performance of PHP applications by caching the compiled version of PHP scripts in memory. This means that when a PHP script is executed, the opcache extension […]