<?php class A { public string $s = null; public int $i = 1, $j = 2; } $a = new A(); echo "s" . $a->s; echo "i" . $a->i; echo "j" . $a->j;
You have javascript disabled. You will not be able to edit any code.