class MyRectangle { public $x, $y; function __construct() { $this->x = 5; $this->y = 10; echo "Constructed"; } } When a new instance of this class is ...
確定! 回上一頁