<?php class IsGet { private $arr = [1 => 1, 2 => 2, 3 => 3]; function &__get($property) { echo "__get\n"; return $this->arr; } function __isset($property) { echo "__isset\n"; return false; } } $instance = new IsGet(); var_dump(isset($instance->arr[1]));
You have javascript disabled. You will not be able to edit any code.