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
mlyon83
Apprentice
*

Posts: 44
Likes Given: 0
Likes Received: 0 in 0 posts
Joined: Apr 2013
Reputation: 0



Post: #5
RE: Time Conversion
(05-17-2013 06:26 PM)Gil Amarth Wrote:  It´s a bad thing to be a scripter bad in maths. xD

If you don´t mind in spanish:

Code:
[FUNCTION F_TIEMPO_FORMATO]

LOCAL.DIAS = <ARGS>/86400
LOCAL.RESTO = <F_DIVISION_RESTO <ARGS>,86400>
LOCAL.HORAS = <LOCAL.RESTO>/3600
LOCAL.RESTO = <F_DIVISION_RESTO <LOCAL.RESTO>,3600>
LOCAL.MINUTOS = <LOCAL.RESTO>/60
LOCAL.RESTO = <F_DIVISION_RESTO <LOCAL.RESTO>,60>    // Son los segundos

RETURN <dLOCAL.DIAS>,<dLOCAL.HORAS>,<dLOCAL.MINUTOS>,<dLOCAL.RESTO>

Code:
[FUNCTION f_division_resto]    // (DIVIDENDO, DIVISOR); Devuelve (RESTO)

LOCAL.NUMERO_VUELTAS = <ARGV[0]> / <ARGV[1]>
LOCAL.REDUCIDO = <LOCAL.NUMERO_VUELTAS> * <ARGV[1]>
LOCAL.VUELTAS_RESTO = <EVAL <ARGV[0]> - <LOCAL.REDUCIDO>>
RETURN <LOCAL.VUELTAS_RESTO>

It returns only days, hours, minutes and seconds, but you can tweak it to give you weeks and months, if you want.

Wow, thank you much. Good thing I never got started on this myself. I'll run it through Google Translator.
05-18-2013 12:22 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: 1 Guest(s)