Sidebars examples

Sidebar

Php8-constructor.php

Code
<?php
class People
{
    public function __construct (protected int $x = 5)
    {

    }

    public function getX()
    {
        return $this->x;
    }
}


$people = new People();
print ($people->getX() . PHP_EOL);
?>
Output
5