Jump to content

How to show Human time from epoch


elentz

Recommended Posts

I need some help here.  I have a query:

 

$sql =  "Select stime,direction,Trunk,Source,destination,CallLength from export where Trunk = 'nexVortex'"

 

I use it with BaaGrid.  It shows everything I need, with one exception.  stime is in Epoch time .  So how do I change the query to show Human time instead of Epoch?

 

Thanks alot for any help

Link to comment
Share on other sites

Here's what I have tried:

$start=date(r,stime);

 

$sql =  "Select stime as $start,direction,Trunk,Source,destination,CallLength from export where Trunk = 'nexVortex'";

 

But I get this:Warning: date() expects parameter 2 to be long, string given in /home/communiq/public_html/smdr/smdrbytrunk.php on line 81

 

The alias is the $start isn't it?

 

 

Thanks

Link to comment
Share on other sites

Here's what I eventually ended up with.

 

$sql =  "Select FROM_UNIXTIME(stime,'%h:%i:%s  %c-%e-%Y'),direction,Trunk,Source,destination,CallLength,status from export where Trunk = 'nexVortex'";

 

I am sure it isn't pretty from some standpoint, but it works as I need it with one exception, the stime is in GMT and I need to get it to show Eastern.

 

Thanks

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.