Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).
Version | System time (s) | User time (s) | Memory (MiB) |
---|---|---|---|
8.4.2 | 0.022 | 0.010 | 17.99 |
<?php
class Foo
{
public mixed $data {
get => $this->data ?? null; //throw new Exception("this property is not set.");
set => $this->data = $value;
}
public function issetData(){
return isset($this->data);
}
}
$foo = new Foo();
var_dump($foo->issetData());
var_dump($foo->data);
$foo->data = 'Hello World!!!';
var_dump($foo->issetData());
var_dump($foo->data);
Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).
Version | System time (s) | User time (s) | Memory (MiB) |
---|---|---|---|
8.4.2 | 0.022 | 0.010 | 17.99 |