Hi
I have this array being returned from an external source:
Array
(
[0] => stdClass Object
(
[Severity] => ERROR
[Source] => crs
[Codes] => 836
[Message] => Destination Postal-State Mismatch.
[LocalizedMessage] => Destination Postal-State Mismatch.
)
[1] => stdClass Object
(
[Severity] => WARNING
[Source] => crs
[Codes] => 835
[Message] => Destination Postal-City Mismatch.
[LocalizedMessage] => Destination Postal-City Mismatch.
)
)
The array can be of any size. if I want to pull out ONLY the 'Message' value of each section of the array, how would this be coded?
Many Thanks for help.
Doug