I have the the following code in a script that I am learning from and I tried echoing or printing the variable thinking it is an array but apparently that doesn't work.
The full code goes something like this
$i = new b();
$i->c = "d";
$i->e = "f";
$i->g = "h";
$i->j = "k";
$i->l = "m";
I have tried echoing and printing the variable $i but thinking it might be an array but it does not work, while returning a Fatal Error saying that the class 'b' was not found.