Seven Real-World Examples of Using the Pipe Operator in PHP 8.5

— The pipe operator (|>) in PHP 8.5 is a powerful addition that allows for a more functional programming style by enabling the chaining of operations clearly and concisely. It takes the result of an expression on its left and passes it as the first argument to the function or method on its right.

Using the new session cache in Laravel

— Laravel’s cache system is a powerful tool that allows developers to store and retrieve data quickly, improving the performance of their applications. Usually, caching is done using various drivers like Redis, Memcached, Database or even the file system.

Everything that is coming in PHP 8.5

— As every year, we will have the new version of PHP this year too, which is PHP 8.5. It’s the minor version in the PHP 8 line, and the version will be released later this year. Let’s discuss everything that has been added in PHP 8.5 so far.