2 replies
My brain has melted and is oozing out my ears!

I need help with a code that will convert UNIX timestamps on the fly. That is, I'm writing to php to use with an API. The data will be generated using a FOREACH loop.

Again, I only have access to the data using API.

Here's the code:

Code:
       foreach ($resp['body']['members'] as $members) {
            echo '<p>Members: <br />'.
                'Join Date: '. $members['time'].'<br />'.
                'Name: ' . $members['nick']. '<br />'.
                'Phone #: '. $members['phone']. '</p>';
I'm trying to call the members of a particular subscribership. Included, the join date 'time', the username 'nick', and the phone number 'phone'.

So as this code goes through each array it would automatically convert the unix timestamp (stored in the $members['time']) into a user-friendly time, such as MM-DD-YY.

Any help is greatly appreciated.
#converting #time #unix

Trending Topics