Tideways 2022.3 Release
In this post we post a comprehensive list of all the features that we have worked on over the last 3 months.
In this post we post a comprehensive list of all the features that we have worked on over the last 3 months.
The modern world, which is full of mobile devices, requires more responsive web applications that provide real-time interactions. As a result, you require a practical backend framework to synchronize information in real time and develop a robust database link with the user interface. For example, let's consider your smartphone's live soccer game score that provides instant entry into all the player statistics.
You may have used OAuth before, but do you know how it really works? In this article, Mauro Chojrin dives deep into building an end-to-end OAuth implementation in PHP.
How do you debug your PHP code? If you use `echo`, `var_dump`, and `print_r`, there's a better way: use a debugger! Join Mauro Chojrin for an exploration of three world-class debuggers available for PHP.
The PHP 8.2 release is just around the corner, and with it comes a number of fixes, improvements and deprecations. It is scheduled to be released late in November 2022. A third beta version of PHP 8.2.0 has now been released for testing. Before going into PHP 8.2 let’s take a quick look at the features of PHP 8.0 and 8.1. Some of the enhanced features in PHP 8.0 & PHP 8.1 are: In this blog post, we'll take a look at some of the most anticipated features coming in PHP 8.2.
PHP is a powerful, server-side programming language with numerous benefits and features. The language is extensively utilized to create various web development solutions. However, core PHP may not be suitable to work on complex business requirements, as PHP code may get intricate. Also, efficiently maintaining complex applications built on PHP normally requires those who worked on the original project.
In this new release, there are changes to many different parts of the Tideways stack. This includes new releases to the PHP extension (5.5.2), daemon (1.7.26, 1.7.28), CLI (0.4.6), and Chrome Web Extension (1.5.1).
Deprecating old code and replacing it with new and improved APIs is an established process in software development. In the core of PHP APIs are provided to trigger and to get notified of deprecations. As a PHP application developer you can then hook into all triggered deprecations using a user defined error handler. You can use this API to collect deprecations and fix them.
Try-catch blocks in PHP can be nested up to any desired levels and are handled in reverse order of appearance i.e. innermost exceptions are handled first. Nested blocks can be useful in case a block of code causes an exception, which can be handled within that block and program execution can continue in the outer block. They can also be useful in case the handling of an exception causes another exception.
You are authorized to access this article! Learn how to secure your Laravel application with simple roles and permissions.