<?php class cards { public $total = 0; public function __construct($initial = 0) { $this->total = $initial; } public function draw() { return ++$this->total; } public function getTotal() { return $this->total; } } $cards = new cards(); echo $cards->draw(); // 1 echo $cards->draw(); // 2 echo $cards->getTotal(); // 2
You have javascript disabled. You will not be able to edit any code.