How to access the data from a flat associative array
04:42 13 Apr 2019

My code produces data that will be like this:

Array
(
    [name] => Facebook
    [author] => Facebook
    [physicalAddress] => 1 Hacker Way\nMenlo Park, CA 94025
    [supportEmail] => android-support@fb.com
    [supportUrl] => https://www.facebook.com/facebook
    [category] => Social
    [storeCategory] => SOCIAL
    [price] => 0
    [changelog] => • Improvements for reliability and speed
    [datePublished] => April 11, 2019
    [datePublishedIso] => 2019-04-11T00:00:00Z
    [fileSize] => Varies with device
    [numDownloads] => 1,000,000,000+
    [versionName] => Varies with device
    [operatingSystems] => Varies with device
    [contentRating] => Parental guidance
)

How can I access the data individually? Like name, author, etc.

php arrays associative-array