Answers for "upgrade to php 8"

PHP
1

php8

// php 8 Union type
class Number {
  public function __construct(
    private int|float $number
  ) {}
}

new Number('NaN'); // TypeError
Posted by: Guest on December-16-2020
1

update to php 7.4

Add the ondrej/php PPA. Ubuntu: ...
Install PHP 7.4 and required extensions. To install PHP 7.4 core. ...
PHP 7.4 for web: ...
Uninstall old PHP versions: ...
Verify PHP 7.4 installation
Posted by: Guest on June-07-2021
0

php8

// php8 class and construct
class Point {
  public function __construct(
    public float $x = 0.0,
    public float $y = 0.0,
    public float $z = 0.0,
  ) {}
}
Posted by: Guest on December-16-2020

Browse Popular Code Answers by Language