<?php // As of PHP 8.0, this is a convenient shortcut for setting class variables // https://www.php.net/__construct#language.oop5.decon.constructor.promotion class Test { public function __construct(public string $value){} } $test = new Test('Hello World'); echo $test->value; /* $ php test.php Hello World */
WeChat ID
aaronpk_tv