I dont understand the function of these characters ->
in this code:
$var->getImageInfo();
the function "getImageInfo()" populates the variable "$var".
I can use the print_r function to display all values but how do I get a specific value
echo "<pre>";
print_r($var->getImageInfo());
echo "</pre>";
returns
Array
(
[resolutionUnit] => 0
[fileName] => 1.jpg
[fileSize] => 30368 bytes
...
)
how do I get "fileSize" for instance?