Install PHP 8.3 on Raspberry Pi

Install PHP 8.3 on Raspberry Pi

PHP is a programming language that commonly used to create web applications and dynamic websites. With each release of PHP, new features and various changes are introduced. This tutorial shows...
Union Types in PHP 8.0

Union Types in PHP 8.0

In versions prior to PHP 8.0, we can specify a single type for parameters, return values, and properties. Since PHP 8.0, we can use union types. A union type allows...
Named Arguments in PHP 8.0

Named Arguments in PHP 8.0

PHP supports positional arguments. It means that we need to pass these arguments to a function or method based on the parameter position. The order of these arguments are important...