The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Time Conversion
Author Message
Gil Amarth
Journeyman
*

Posts: 189
Likes Given: 2
Likes Received: 1 in 1 posts
Joined: May 2012
Reputation: 0



Post: #7
RE: Time Conversion
The script is very simple, 1 day it´s 86400 seconds, so you have to divide the the total amount of seconds to how many seconds a day has.

Then you have to calculate the rest of the division, f_division_resto does that. It´s only maths.
With the rest you repeat the operation, 1 hour has 3600 seconds, and repeat.
If you want months, and weeks.

Code:
[FUNCTION F_FORMAT_TIME]

LOCAL.MONTHS = <ARGS>/2592000    // Months of 30 days
LOCAL.REST = <F_DIVISION_REST <ARGS>,2592000>
LOCAL.WEEKS = <LOCAL.REST>/604800
LOCAL.REST = <F_DIVISION_REST <LOCAL.REST>,604800>
LOCAL.DAYS = <LOCAL.REST>/86400
LOCAL.REST = <F_DIVISION_REST <LOCAL.REST>,86400>
LOCAL.HOURS = <LOCAL.REST>/3600
LOCAL.REST = <F_DIVISION_REST <LOCAL.REST>,3600>
LOCAL.MINUTES = <LOCAL.REST>/60
LOCAL.REST = <F_DIVISION_REST <LOCAL.REST>,60>    // Seconds

SYSMESSAGE @00 <dLOCAL.MONTHS> Months, <dLOCAL.WEEKS> Weeks, <dLOCAL.DAYS> Days, <dLOCAL.HOURS> Hours, <dLOCAL.MINUTES> Minutes, <dLOCAL.REST> seconds

Code:
[FUNCTION f_division_rest]    // (DIVIDEND, DIVISOR); Returns (REST)

LOCAL.LOOPS = <ARGV[0]> / <ARGV[1]>
LOCAL.ELAPSED = <LOCAL.LOOPS> * <ARGV[1]>
LOCAL.REST = <EVAL <ARGV[0]> - <LOCAL.ELAPSED>>
RETURN <LOCAL.REST>

Then, you can use F_FORMAT_TIME <TAG.TIME>, and voilá.
(This post was last modified: 05-18-2013 05:55 AM by Gil Amarth.)
05-18-2013 05:51 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Messages In This Thread
Time Conversion - mlyon83 - 05-17-2013, 02:43 AM
RE: Time Conversion - Mordaunt - 05-17-2013, 04:53 AM
RE: Time Conversion - mlyon83 - 05-17-2013, 05:25 AM
RE: Time Conversion - Gil Amarth - 05-17-2013, 06:26 PM
RE: Time Conversion - mlyon83 - 05-18-2013, 12:22 AM
RE: Time Conversion - mlyon83 - 05-18-2013, 01:55 AM
RE: Time Conversion - Gil Amarth - 05-18-2013 05:51 AM
RE: Time Conversion - Rizz - 05-19-2013, 03:31 AM

Forum Jump:


User(s) browsing this thread: 2 Guest(s)