About actualdeparturetime

How to get actualdeparturetime in real time format i am using php api

All timestamps returned by FlightXML are UNIX epoch (seconds since 1970) in UTC.

In PHP, you can use the strftime function to format a timestamp as a human-readable format. secure.php.net/strftime

Since the timestamps are UTC, if you want to display them in a different timezone you will need to use date_default_timezone_set to set the appropriate timezone.
secure.php.net/manual/en/functi … ne-set.php

Typically times are displayed based on the localtime of the airport you are departing or arriving at. You can use our AirportInfo function to get the timezone identifier for any airport code that we recognize.