I have to try to access the value of "text" which is 4.9 in the JSON data below in PHP.
$json = '{"destination_addresses" : [ "Ibadan-Abeokuta Rd, Mokola, Ibadan, Nigeria" ],
 "origin_addresses" : [ "Ogunwale Crescent, Ibadan, Nigeria" ], 
 "rows" : [ 
     { "elements" : [
          { "distance" : 
            { "text" : "4.9 mi", "value" : 7819 }, 
            "duration" : { "text" : "18 mins", "value" : 1067 }, 
            "status" : "OK" }
                
                    ]
         } 
        ]
         
         , "status" : "OK" }';
 
     
    