Php 8.1 New Features — Readonly Properties

Backend Developer
3 min readJan 13, 2022

With new version of PHP we have a new feature named Readonly properties. Readonly properties are init and set value just once and we can not change its value. This protects unwanted value changes from anywhere in codebase. Before php 8.1 we do this with creating private property and a getter method in class to get its value. With readonly property we don’t need to do this. We just use a readonly keyword in class definition or in construct method. Every readonly property can set once. If you try to change you will get error.

Example before PHP 8.1 :

<?php

class Test {
private int $status ;

.....

public function getStatus()
{
return $this->status;
}

}

After Php 8.1 using readonly keyword

<?php

class Test {
public readonly int $status;

public function __construct($status)
{
$this->status = $status; // we can only set this once
}
}
$test = new Test(99);
echo $test->status ; // returns 99
$test->status = 66; // Throws error because you can not override the value of readonly property.

Another way of using readonly property is Constructor Property Promotion method. With this method we pass and define properties in constructor method. Let’s see in some code.

<?php

class Test {


public function __construct(public readonly int $status)
{
$this->status = $status;
}}
$test = new Test(99);
echo $test->status; // 99
$test->status = 98 ; // !!!! Error: Cannot modify readonly property

Defining in constructor is 2nd way of defining readonly property. This declaration is same with below.

class Test {
public readonly int $status;

public function __construct(int $status) {
$this->status = $status;
}
}

Property Initialization

Readonly properties can be initialized anywhere in class. All above examples init within constructor method. But we can init in any method in our class. This is a nice addition of PHP and we can init but we can’t change the readonly property.

class Test {
public readonly int $status;

public function change(int $status) {
$this->status = $status;
}
}

$test = new Test();
$test->change(22);
$test = new Test();
$test->change(23);
$test->change(24); // Throws error!!!!

Let’s go deeper… We can not init any of readonly property out of class. This is another protection of avoiding changes.

class Test {
public readonly int $status;
}
$test = new Test();
$test->status = 99;

When you try this you will get error again..

Error: Cannot initialize readonly property

Also we can not set a default value in class definition. When we define a readonly property , you can not set a default value.

Readonly Enforcement

PHP actively refuses to modify a readonly property. This includes directly setting a value, incrementing it, references, and array operations. You can init once and you can not modify , change it’s value from anywhere in your code base.

Unset Readonly

Yes, we can not modify value of readonly property but can we unset that?

The answer is basicly No.. You can not unset or delete a readonly property. This is another protection of readonly property . Think this way you created and defined a property and you do not want that anyone else delete or modify that property. The readonly keyword added in language for this purpose in very short explanation.

Hope it was a good read.. See you on next article about PHP 8.1 features

--

--