I don't know a ton of php, but my knowledge of javascript and ruby got me this far.. I've printed out an object (below) and I need to change a couple things about it before I display its contents to a user in an email.
The object is housed in a variable called: $item_meta
Here's the printout of the object in a REPL
I'm trying to remove the [Booking ID] and [Booking Date] properties and also change the wording of another key from [Monterey & Carmel Date (Must differ from Alcatraz date)] to: [Monterey & Carmel Date] and lastly (if possible) change the format of the previous field (monterey & carmel..) from 04/18/2016 to April 18th, 2016.
I've tried removing the first two properties using the unset() method, but wasn't able to access them properly from the object. That's my main issue, being able to traverse the object so I can remove or manipulate its contents.
Any help would be greatly appreciated, thanks! :)