Systems | Development | Analytics | API | Testing

PHP

Top 10 PHP Frameworks in 2023

PHP’s dynamism has certainly created a niche for it among the languages in the programming world. The ability to create cross-platform applications and compatibility with nearly, all the modern servers tops its open-sourceness, making it all the more desirable. PHP scripts can easily be inserted into HTML files, allowing developers to transform static website code into dynamic front-end applications.

Top 5 PHP REST API Frameworks

PHP (Hypertext Preprocessor) is a programming language that is primarily used for web development. It is a server-side language, which means that it is executed on the server rather than in the user’s web browser. PHP is often used in combination with HTML, CSS, and JavaScript to create dynamic and interactive websites. One of the main advantages of PHP is that it is easy to learn and use, making it a popular choice for web developers of all skill levels.

A story of Lazy Loading File System Operations for better dev system performance

In this blog post I want to share a story of a performance bottleneck using the filesystem that we experienced in our development setup. In the Tideways backend, we have a simple homegrown database migration tool that scans a directory for.sql files and applies them if not already done. It is a very old piece of code that I used since before the times of doctrine/migrations. It is much simpler but works for us.