I am trying to access the JSON content from the below URL and parse to extract and print the date value of "data.content.containers.container.locationDateTime"
iff the
"data.content.containers.container.label " has been set as "Empty Equipment Returned"
$url = 'https://elines.coscoshipping.com/ebtracking/public/containers/FCIU5238624';
$datax = file_get_contents($url);
$x = json_decode($datax);
could anyone help me please