<?php class Sorter { private array $data; public function __construct(array $data) { $this->data = count($data); var_dump($this->data); } } new Sorter([1,3,6,5,2,4]);
You have javascript disabled. You will not be able to edit any code.