» Javascript equivalent for PHP's mktime

399 PHP equivalents

PHP to Javascript Project: php.js

php.jsThis article is part of the 'Porting PHP to Javascript' Project, which aims to decrease the gap between developing for PHP & Javascript.

A lot of people are familiar with PHP's functions, and though Javascript functions are often quite similar, some functions may be missing or addressed differently. The Javascript implementations should be as compliant with the PHP versions as possible, a good indication is that the PHP function manual could also apply to the Javascript version.

Porting crucial PHP functions to Javascript can be fun & useful. Currently some PHP functions have been added, but readers are encouraged to contribute and improve functions by adding comments. Eventually the goal is to save all the functions in one php.js file and make it publicly available for your coding pleasure.

If you choose to contribute, let me know how you want to be credited in the function's comments. You may also want to subscribe to RSS so you receive updates whenever new functions are posted.

This is a Javascript version of the PHP function: mktime.

I have moved out PHP.JS to it's own site. For info & reactions on comments please goto phpjs.org

PHP mktime

Description

mktime - Get Unix timestamp for a date

int mktime([ int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]] )

Returns the Unix timestamp corresponding to the arguments given. This timestamp is a long integer containing the number of seconds between the Unix Epoch (January 1 1970 00:00:00 GMT) and the time specified.

Parameters

  • hour

    The number of the hour.

  • minute

    The number of the minute.

  • second

    The number of seconds past the minute.

  • month

    The number of the month.

  • day

    The number of the day.

  • year

    The number of the year, may be a two or four digit value, with values between 0-69 mapping to 2000-2069 and 70-100 to 1970-2000. On systems where time_t is a 32bit signed integer, as most common today, the valid range for year is somewhere between 1901 and 2038. However, before PHP 5.1.0 this range was limited from 1970 to 2038 on some systems (e.g. Windows).

  • is_dst

    This parameter can be set to 1 if the time is during daylight savings time (DST), 0 if it is not, or -1 (the default) if it is unknown whether the time is within daylight savings time or not. If it's unknown, PHP tries to figure it out itself. This can cause unexpected (but not incorrect) results. Some times are invalid if DST is enabled on the system PHP is running on or is_dst is set to 1. If DST is enabled in e.g. 2:00, all times between 2:00 and 3:00 are invalid and mktime() returns an undefined (usually negative) value. Some systems (e.g. Solaris 8) enable DST at midnight so time 0:30 of the day when DST is enabled is evaluated as 23:30 of the previous day.

    Note: As of PHP 5.1.0, this parameter became deprecated. As a result, the new timezone handling features should be used instead.

Return Values

mktime() returns the Unix timestamp of the arguments given. If the arguments are invalid, the function returns FALSE (before PHP 5.1 it returned -1).

See Also

Javascript mktime

Source

This is the main source of the Javascript version of PHP's mktime

function mktime() {
    // http://kevin.vanzonneveld.net
    // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: baris ozdil
    // +      input by: gabriel paderni
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: FGFEmperor
    // +      input by: Yannoo
    // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +      input by: jakes
    // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   bugfixed by: Marc Palau
    // +   improved by: Brett Zamir (http://brett-zamir.me)
    // *     example 1: mktime(14, 10, 2, 2, 1, 2008);
    // *     returns 1: 1201871402
    // *     example 2: mktime(0, 0, 0, 0, 1, 2008);
    // *     returns 2: 1196463600
    // *     example 3: make = mktime();
    // *     example 3: td = new Date();
    // *     example 3: real = Math.floor(td.getTime()/1000);
    // *     example 3: diff = (real - make);
    // *     results 3: diff < 5
    // *     example 4: mktime(0, 0, 0, 13, 1, 1997)
    // *     returns 4: 883609200
    // *     example 5: mktime(0, 0, 0, 1, 1, 1998)
    // *     returns 5: 883609200
    // *     example 6: mktime(0, 0, 0, 1, 1, 98)
    // *     returns 6: 883609200
 
    var no=0, i = 0, ma=0, mb=0, d = new Date(), dn = new Date(), argv = arguments, argc = argv.length;
 
    var dateManip = {
        0: function(tt){ return d.setHours(tt); },
        1: function(tt){ return d.setMinutes(tt); },
        2: function(tt){ var set = d.setSeconds(tt); mb = d.getDate() - dn.getDate(); return set;},
        3: function(tt){ var set = d.setMonth(parseInt(tt, 10)-1); ma = d.getFullYear() - dn.getFullYear(); return set;},
        4: function(tt){ return d.setDate(tt+mb);},
        5: function(tt){
            if (tt >= 0 && tt <= 69) {
                tt += 2000;
            }
            else if (tt >= 70 && tt <= 100) {
                tt += 1900;
            }
            return d.setFullYear(tt+ma);
        }
        // 7th argument (for DST) is deprecated
    };
 
    for( i = 0; i < argc; i++ ){
        no = parseInt(argv[i]*1, 10);
        if (isNaN(no)) {
            return false;
        } else {
            // arg is number, let's manipulate date object
            if(!dateManip[i](no)){
                // failed
                return false;
            }
        }
    }
    for (i = argc; i < 6; i++) {
        switch(i) {
            case 0:
                no = dn.getHours();
                break;
            case 1:
                no = dn.getMinutes();
                break;
            case 2:
                no = dn.getSeconds();
                break;
            case 3:
                no = dn.getMonth()+1;
                break;
            case 4:
                no = dn.getDate();
                break;
            case 5:
                no = dn.getFullYear();
                break;
        }
        dateManip[i](no);
    }
 
    return Math.floor(d.getTime()/1000);
}

Examples

Currently there are 6 examples

Example 1

This is how you could call mktime()
mktime(14, 10, 2, 2, 1, 2008);
And that would return
1201871402

Example 2

This is how you could call mktime()
mktime(0, 0, 0, 0, 1, 2008);
And that would return
1196463600

Example 3

This is how you could call mktime()
diff = (real - make);
And that would return

More about this Project

Download php.js

To easily include it in your code, every function currently available is stored in

Normal

Namespaced What is 'namespaced?'

To download use Right click, Save Link As
Generally the best way is to use a minified version and gzip it


Credits

Respect & awards go to everybody who has contributed in some way so far:

medalmedalBrett Zamir (link) for contributing to:
 array_diff, array_diff_assoc, array_diff_key, array_diff_uassoc, array_diff_ukey, array_fill_keys, array_fill_keys, array_filter, array_intersect, array_intersect_assoc, array_intersect_key, array_intersect_uassoc, array_intersect_ukey, array_keys, array_map, array_merge, array_merge_recursive, array_pop, array_search, array_slice, array_slice, array_splice, array_udiff, array_udiff_assoc, array_udiff_uassoc, array_uintersect, array_uintersect_assoc, array_uintersect_uassoc, array_unique, arsort, arsort, asort, asort, compact, current, each, end, extract, key, krsort, ksort, natcasesort, natcasesort, natsort, natsort, next, pos, prev, reset, rsort, rsort, shuffle, sort, sort, uasort, uasort, uksort, usort, classkit_import, classkit_method_add, classkit_method_copy, classkit_method_redefine, classkit_method_remove, classkit_method_rename, class_exists, get_class_methods, get_class_vars, get_declared_classes, get_object_vars, method_exists, property_exists, ctype_alnum, ctype_alpha, ctype_cntrl, ctype_digit, ctype_graph, ctype_lower, ctype_print, ctype_punct, ctype_space, ctype_upper, ctype_xdigit, date, date, date, date, date_default_timezone_get, date_default_timezone_set, date_parse, gettimeofday, gmdate, gmmktime, gmstrftime, idate, localtime, mktime, strftime, strtotime, timezone_abbreviations_list, timezone_identifiers_list, restore_exception_handler, set_exception_handler, fclose, feof, fgetc, fgetcsv, fgets, fgetss, filemtime, fopen, fpassthru, fread, fseek, ftell, pathinfo, pclose, popen, readfile, rewind, call_user_func, call_user_func_array, create_function, func_get_arg, func_get_args, func_num_args, get_defined_functions, get_defined_functions, register_shutdown_function, assert, assert_options, get_cfg_var, get_defined_constants, get_required_files, getenv, getlastmod, ini_alter, ini_get, ini_get_all, ini_restore, ini_set, php_ini_loaded_file, php_ini_scanned_files, phpversion, putenv, set_time_limit, include, include_once, require, require_once, atan2, expm1, fmod, log1p, rand, constant, define, defined, die, exit, exit, php_strip_whitespace, sleep, time_nanosleep, time_sleep_until, usleep, gopher_parsedir, setrawcookie, aggregate, aggregate_info, aggregate_methods, aggregate_methods_by_list, aggregate_methods_by_regexp, aggregate_properties, aggregate_properties_by_list, aggregate_properties_by_regexp, aggregation_info, deaggregate, preg_grep, sql_regcase, runkit_class_adopt, runkit_class_emancipate, runkit_function_add, runkit_function_copy, runkit_function_redefine, runkit_function_remove, runkit_function_rename, runkit_import, runkit_method_add, runkit_method_copy, runkit_method_redefine, runkit_method_remove, runkit_method_rename, runkit_superglobals, chunk_split, convert_uuencode, count_chars, echo, get_html_translation_table, lcfirst, levenshtein, localeconv, md5, md5_file, nl2br, nl_langinfo, parse_str, printf, quoted_printable_decode, quoted_printable_decode, quoted_printable_encode, setlocale, sha1, soundex, sprintf, str_getcsv, str_ireplace, str_replace, str_replace, str_shuffle, str_split, str_word_count, strcoll, strcspn, strip_tags, strlen, strnatcasecmp, strncmp, strrchr, strspn, strtok, strtr, substr_compare, substr_replace, ucfirst, vprintf, base64_decode, get_headers, get_meta_tags, parse_url, rawurldecode, rawurldecode, rawurlencode, rawurlencode, rawurlencode, urldecode, urldecode, urlencode, urlencode, doubleval, get_defined_vars, get_resource_type, gettype, import_request_variables, import_request_variables, is_array, is_array, is_binary, is_buffer, is_callable, is_real, is_resource, is_unicode, print_r, print_r, settype, strval, strval, unserialize, var_dump, var_export, utf8_decode
spacemedalOnno Marsman for contributing to:
 acos, acosh, asin, asinh, atan, atanh, ceil, cos, cosh, decbin, dechex, decoct, exp, floor, fmod, getrandmax, hypot, is_finite, is_infinite, is_nan, lcg_value, log, log10, max, max, min, min, mt_getrandmax, mt_rand, pi, pow, rand, round, sin, sinh, sqrt, tan, tanh, setcookie, preg_quote, addslashes, bin2hex, count_chars, html_entity_decode, htmlentities, htmlspecialchars_decode, levenshtein, ltrim, nl2br, nl2br, ord, parse_str, rtrim, soundex, str_ireplace, str_replace, str_replace, str_rot13, str_split, strcasecmp, strip_tags, stripos, stripslashes, stristr, strlen, strnatcmp, strncasecmp, strpbrk, strpos, strrev, strripos, strrpos, strstr, strtolower, strtoupper, substr, substr_count, trim, ucfirst, ucwords, base64_decode, empty, empty, is_array, is_bool, isset, utf8_decode, utf8_encode, utf8_encode
spacemedalMichael White (link) for contributing to:
 array_count_values, get_included_files, include, include_once, require, require_once, md5, number_format, parse_str, printf, sha1, sprintf, str_pad, strnatcmp, vprintf, http_build_query, floatval, is_object, print_r
spacemedalWaldo Malqui Silva for contributing to:
 array_fill, array_pad, array_product, array_rand, compact, count, range, abs, defined, ip2long, long2ip, implode, strcmp, strncmp, ucwords, settype
spacemedalPaulo Ricardo F. Santos for contributing to:
 getdate, microtime, constant, define, chop, chunk_split, quotemeta, sprintf, get_headers, gettype, is_double, is_float, is_integer, is_long, is_scalar
spacemedalJack for contributing to:
 compact, max, min, count_chars, htmlentities, md5, parse_str, soundex, sprintf, str_ireplace, strnatcmp, trim, utf8_encode
spacemedalJonas Raoni Soares Silva (link) for contributing to:
 shuffle, abs, setcookie, number_format, number_format, soundex, str_repeat, str_replace, str_rot13, ucwords, wordwrap, wordwrap
spacemedalPhilip Peterson for contributing to:
 sizeof, log10, round, exit, echo, get_html_translation_table, nl2br, str_replace, strchr, urldecode, urlencode, var_export
spacemedalAtes Goral (link) for contributing to:
 array_change_key_case, array_count_values, array_diff_key, each, get_class, preg_quote, addslashes, count_chars, str_rot13, stripslashes
spacemedalLegaev Andrey for contributing to:
 end, reset, file, file_get_contents, function_exists, include, include_once, http_build_query, is_array, is_object
spacemedalMartijn Wieringa for contributing to:
 array_shift, array_unshift, str_ireplace, str_split, strcasecmp, stripos, strnatcmp, substr
spacemedalNate for contributing to:
 array_merge, array_sum, array_unique, pathinfo, addslashes, echo, strncasecmp
spacemedalEnrique Gonzalez for contributing to:
 file_exists, filesize, decbin, decoct, deg2rad, rad2deg
spacemedalPhilippe Baumann for contributing to:
 base_convert, bindec, dechex, hexdec, octdec, empty
spacemedalTheriault for contributing to:
 array_multisort, quoted_printable_decode, quoted_printable_decode, quoted_printable_encode, quoted_printable_encode
spacemedalWebtoolkit.info (link) for contributing to:
 crc32, md5, sha1, utf8_decode, utf8_encode
 
spacemedalAsh Searle (link) for contributing to:
 basename, printf, sprintf, vprintf
spacemedalCarlos R. L. Rodrigues (link) for contributing to:
 array_chunk, array_unique, date, levenshtein
spacemedalJani Hartikainen for contributing to:
 file, file_exists, file_get_contents, filesize
spacemedalOle Vrijenhoek for contributing to:
 convert_uuencode, convert_uuencode, quoted_printable_decode, str_word_count
spacemedaltravc for contributing to:
 rawurldecode, rawurlencode, urldecode, urlencode
spacemedalAlex for contributing to:
 get_html_translation_table, strip_tags, is_int
spacemedalAndrea Giammarchi (link) for contributing to:
 array_map, define, levenshtein
spacemedalErkekjetter for contributing to:
 ltrim, rtrim, trim
spacemedalGeekFG (link) for contributing to:
 krsort, ksort, time
spacemedalJohnny Mast (link) for contributing to:
 array_walk, array_walk_recursive, create_function
spacemedalMichael Grier for contributing to:
 array_unique, wordwrap, rawurlencode
spacemedald3x for contributing to:
 array, explode, unserialize
spacemedalmarrtins for contributing to:
 array_change_key_case, addslashes, stripslashes
spacemedalstag019 for contributing to:
 parse_str, parse_str, http_build_query
spacemedalAJ for contributing to:
 urldecode, urlencode
spacemedalAlfonso Jimenez (link) for contributing to:
 array_reduce, strpbrk
spacemedalAman Gupta for contributing to:
 base64_decode, utf8_decode
spacemedalArpad Ray (mailto:arpad@php.net) for contributing to:
 serialize, unserialize
spacemedalBreaking Par Consulting Inc (link) for contributing to:
 gettimeofday, localtime
spacemedalCaio Ariede (link) for contributing to:
 strtotime, strtotime
spacemedalDavid for contributing to:
 strtotime, is_numeric
spacemedalJosh Fraser (link) for contributing to:
 gettimeofday, localtime
spacemedalKELAN for contributing to:
 get_html_translation_table, gettype
spacemedalKarol Kowalski for contributing to:
 array_reverse, abs
spacemedalLars Fischer for contributing to:
 urldecode, urlencode
spacemedalMarc Palau for contributing to:
 mktime, strip_tags
spacemedalMirek Slugen for contributing to:
 htmlspecialchars, htmlspecialchars_decode
spacemedalOleg Eremeev for contributing to:
 str_replace, str_replace
spacemedalPellentesque Malesuada for contributing to:
 base64_decode, base64_encode
spacemedalPublic Domain (link) for contributing to:
 json_decode, json_encode
spacemedalSakimori for contributing to:
 strlen, wordwrap
spacemedalSteve Hilder for contributing to:
 strcmp, strncmp
spacemedalSteven Levithan (link) for contributing to:
 trim, parse_url
spacemedalThunder.m for contributing to:
 base64_decode, base64_encode
spacemedalTyler Akins (link) for contributing to:
 base64_decode, base64_encode
spacemedalgettimeofday for contributing to:
 date, idate
spacemedalgorthaur for contributing to:
 strcmp, strncmp
spacemedalmdsjack (link) for contributing to:
 include, trim
spacemedal0m3r for contributing to:
 array_diff_assoc
spacemedalAlexander Ermolaev (link) for contributing to:
 trim
spacemedalAllan Jensen (link) for contributing to:
 number_format
spacemedalAndreas for contributing to:
 setcookie
spacemedalAndrej Pavlovic for contributing to:
 serialize
spacemedalAnton Ongson for contributing to:
 str_replace
spacemedalArno for contributing to:
 htmlspecialchars
spacemedalAtli Þór for contributing to:
 nl2br
spacemedalBayron Guevara for contributing to:
 base64_encode
spacemedalBen Bryan for contributing to:
 print_r
spacemedalBenjamin Lupton for contributing to:
 number_format
spacemedalBlues (link) for contributing to:
 strftime
spacemedalBlues at link for contributing to:
 setlocale
spacemedalBobby Drake for contributing to:
 strip_tags
spacemedalBrad Touesnard for contributing to:
 date
spacemedalBryan Elliott for contributing to:
 date
spacemedalCagri Ekin for contributing to:
 parse_str
spacemedalChaosNo1 for contributing to:
 timezone_abbreviations_list
spacemedalChristian Doebler for contributing to:
 sleep
spacemedalCord for contributing to:
 is_array
spacemedalDaniel Esteban for contributing to:
 strpos
spacemedalDavid James for contributing to:
 get_class
spacemedalDavid Randall for contributing to:
 date
spacemedalDer Simon (link) for contributing to:
 echo
spacemedalDino for contributing to:
 serialize
spacemedalDiogo Resende for contributing to:
 number_format
spacemedalDouglas Crockford (link) for contributing to:
 gettype
spacemedalDxGx for contributing to:
 trim
spacemedalEric Nagel for contributing to:
 strip_tags
spacemedalEugene Bulkin (link) for contributing to:
 echo
spacemedalFGFEmperor for contributing to:
 mktime
spacemedalFelix Geisendoerfer (link) for contributing to:
 array_key_exists
spacemedalFrancesco for contributing to:
 empty
spacemedalFrancois for contributing to:
 htmlspecialchars_decode
spacemedalFremyCompany for contributing to:
 isset
spacemedalGabriel Paderni for contributing to:
 str_replace
spacemedalGaragoth for contributing to:
 serialize
spacemedalGilbert for contributing to:
 array_sum
spacemedalHoward Yeend for contributing to:
 number_format
spacemedalHyam Singer (link) for contributing to:
 exit
spacemedalJ A R for contributing to:
 end
spacemedalJalal Berrami for contributing to:
 import_request_variables
spacemedalKirk Strobeck for contributing to:
 strlen
spacemedalKristof Coomans (SCK-CEN (Belgian Nucleair Research Centre)) for contributing to:
 strnatcasecmp
spacemedalLH for contributing to:
 empty
spacemedalLeslie Hoare for contributing to:
 rand
spacemedalLincoln Ramsay for contributing to:
 basename
spacemedalLinuxworld for contributing to:
 bin2hex
spacemedalLuke Godfrey for contributing to:
 strip_tags
spacemedalLuke Smith (link) for contributing to:
 number_format
spacemedalManish for contributing to:
 is_array
spacemedalMarc Jansen for contributing to:
 empty
spacemedalMarco for contributing to:
 get_html_translation_table
spacemedalMartin Pool for contributing to:
 strnatcasecmp
spacemedalMateusz "loonquawl" Zalega for contributing to:
 htmlspecialchars_decode
spacemedalMatt Bradley for contributing to:
 is_int
spacemedalMeEtc (link) for contributing to:
 date
spacemedalMick@el for contributing to:
 stripslashes
spacemedalNathan for contributing to:
 htmlspecialchars
spacemedalNick Callen for contributing to:
 wordwrap
spacemedalNorman "zEh" Fuchs for contributing to:
 utf8_decode
spacemedalOle Vrijenhoek (link) for contributing to:
 filemtime
spacemedalOzh for contributing to:
 dirname
spacemedalPaul for contributing to:
 exit
spacemedalPedro Tainha (link) for contributing to:
 unserialize
spacemedalPeter-Paul Koch (link) for contributing to:
 date
spacemedalPierre-Luc Paour for contributing to:
 strnatcasecmp
spacemedalPul for contributing to:
 strip_tags
spacemedalPyerre for contributing to:
 checkdate
spacemedalReverseSyntax for contributing to:
 htmlspecialchars_decode
spacemedalRival for contributing to:
 number_format
spacemedalRobin for contributing to:
 is_nan
spacemedalSanjoy Roy for contributing to:
 array_diff
spacemedalSaulo Vallory for contributing to:
 strncasecmp
spacemedalScott Cariss for contributing to:
 htmlspecialchars_decode
spacemedalSimon Willison (link) for contributing to:
 str_replace
spacemedalSlawomir Kaniecki for contributing to:
 htmlspecialchars_decode
spacemedalSoren Hansen for contributing to:
 count
spacemedalSteve Clay for contributing to:
 function_exists
spacemedalSubhasis Deb for contributing to:
 array_merge_recursive
spacemedalT. Wild for contributing to:
 filesize
spacemedalT.Wild for contributing to:
 substr
spacemedalT0bsn for contributing to:
 crc32
spacemedalThiago Mata (link) for contributing to:
 call_user_func_array
spacemedalTim Wiel for contributing to:
 date
spacemedalTim de Koning for contributing to:
 is_numeric
spacemedalTod Gentille for contributing to:
 log10
spacemedalValentina De Rosa for contributing to:
 strspn
spacemedalVictor for contributing to:
 ip2long
spacemedalWagner B. Soares for contributing to:
 strtotime
spacemedalXoraX (link) for contributing to:
 dirname
spacemedalYUI Library: link for contributing to:
 setlocale
spacemedalYannoo for contributing to:
 mktime
spacemedalYves Sucaet for contributing to:
 utf8_encode
spacemedalbaris ozdil for contributing to:
 mktime
spacemedalbooeyOH for contributing to:
 preg_quote
spacemedalclass_exists for contributing to:
 get_declared_classes
spacemedaldate for contributing to:
 idate
spacemedaldjmix for contributing to:
 basename
spacemedaldptr1988 for contributing to:
 unserialize
spacemedalduncan for contributing to:
 array_unique
spacemedalecho is bad for contributing to:
 echo
spacemedalejsanders for contributing to:
 vsprintf
spacemedalgabriel paderni for contributing to:
 mktime
spacemedalger for contributing to:
 html_entity_decode
spacemedalhitwork for contributing to:
 utf8_decode
spacemedaljakes for contributing to:
 mktime
spacemedaljohn (link) for contributing to:
 html_entity_decode
spacemedaljohnrembo for contributing to:
 var_export
spacemedalkenneth for contributing to:
 explode
spacemedalmadipta for contributing to:
 get_html_translation_table
spacemedalmarc andreu for contributing to:
 html_entity_decode
spacemedalmetjay for contributing to:
 time
spacemedalmk.keck for contributing to:
 realpath
spacemedalmktime for contributing to:
 gmmktime
spacemedalnobbler for contributing to:
 htmlentities
spacemedalnoname for contributing to:
 get_html_translation_table
spacemedalpenutbutterjelly for contributing to:
 str_ireplace
spacemedalrezna for contributing to:
 stripslashes
spacemedalsankai for contributing to:
 array_count_values
spacemedalsetcookie for contributing to:
 setrawcookie
spacemedalsowberry for contributing to:
 utf8_encode
spacemedalstensi for contributing to:
 intval
spacemedalstrcasecmp, strcmp for contributing to:
 substr_compare
spacemedaltaith for contributing to:
 is_numeric
spacemedaluestla for contributing to:
 strtr

Your name here?

Contributing is as easy as adding a comment with better code, or code for a new function.
Any contribution leading to improvement will directly get your name & link here.


Coming Project features

Project features that we are currently working on:

  • Done - Site. A place for php.js of it's own. See: phpjs.org.
  • Done - Compile. Compile your own php.js version, with only the functions you need. Should generate a hash with which you can retrieve latest versions of your php.js combination.
  • Done - Testsuite. A better test-suite that can be ran locally so developers can easily test before commiting. Also the testing itself should be more thorough.
  • Done - Versioning. Individual functions are versioned, but the entire library should be versioned as well.

Stay up to date

You can track my blog rss articles and rss comments. You may also find my rss bookmarks interesting. Or twitter Follow me on Twitter


Like this article?

   Then Dzone it!
Or use another bookmark button below to show your support &
help me spread the word.


tags: programming, php, javascript, phpjs
category: Programming - Javascript - PHP equivalents
read: 18,064 times

Add Comment

PHP.JS is outgroing this blog and moving to it's own space. Please leave your comment here: http://phpjs.org/functions/mktime

Comments

#34. Kevin on 11 February 2009

Member avatar: Kevin@ Marc Palau: very well!

#33. Marc Palau on 06 February 2009

Gravatar.com: Marc PalauOk Kevin, I will take a look with diferent timezones and I will fix it :)

thanks for your reply

#32. Kevin on 25 January 2009

Member avatar: Kevin@ Marc Palau: Maybe it's because we're in different timezones, but your function fails the second & 3rd test. So, sorry but I cannot replace the current implementation just yet.

And:

no = parseInt(argv[i]*1);


already multiplies by one, btw.

#31. Marc Palau on 17 January 2009

Gravatar.com: Marc PalauTwo comments on one:

I'm not agree with tath mod. man, you are not filtering the arguments.
Definetively this is all wrong (sorry man)

I have rewrited the function, please take a test and tell me if I'm OK:

function mktime() {
//agree here
var d = new Date(), argv = arguments;
var cH=argv[0]!=undefined?argv[0]*1:d.getHours(),//hours
ci=argv[1]!=undefined?argv[1]*1:d.getMinutes(),//minutes
cs=argv[2]!=undefined?argv[2]*1:d.getSeconds(),//second
cn=argv[3]!=undefined?(argv[3]*1)-1:d.getMonth(),//month
cj=argv[4]!=undefined?argv[4]*1:d.getDate(),//day
cY=argv[5]!=undefined?argv[5]*1:d.getYear()+1900;//year

d.setHours(cH,ci,cs); d.setDate(cj); d.setMonth(cn); d.setYear(cY);

return Math.floor(d.getTime()/1000);
}


To test I have used this code:

function test(){
document.body.appendChild(div=document.createElement("div"));
var w=function(v){
div.innerHTML+=v+"<br>";
}
 
w("xx:xx:xx xx/xx/xxxx: "+mktime());
w("10:xx:xx xx/xx/xxxx: "+mktime(10));
w("10:10:xx xx/xx/xxxx: "+mktime(10,10,10));
w("10:10:10 10/xx/xxxx: "+mktime(10,10,10,10));
w("10:10:00 10/10/xxxx: "+mktime(10,10,10,10,10));
w("10:10:10 10/10/2000: "+mktime(10,10,10,10,10,2000));
w("00:00:00 05/03/2008: "+mktime(0, 0, 0, '05', '03', '2008')+" [<?=mktime(0, 0, 0, '05', '03', '2008')?>]");
w("00:00:00 05/04/2008: "+mktime(0, 0, 0, '05', '04', '2008')+" [<?=mktime(0, 0, 0, '05', '04', '2008')?>]");
w("00:00:00 05/05/2008: "+mktime(0, 0, 0, '05', '05', '2008')+" [<?=mktime(0, 0, 0, '05', '05', '2008')?>]");
w("00:00:00 05/06/2008: "+mktime(0, 0, 0, '05', '06', '2008')+" [<?=mktime(0, 0, 0, '05', '06', '2008')?>]");
w("00:00:00 05/07/2008: "+mktime(0, 0, 0, '05', '07', '2008')+" [<?=mktime(0, 0, 0, '05', '07', '2008')?>]");
w("00:00:00 05/08/2008: "+mktime(0, 0, 0, '05', '08', '2008')+" [<?=mktime(0, 0, 0, '05', '08', '2008')?>]");
w("00:00:00 05/09/2008: "+mktime(0, 0, 0, '05', '09', '2008')+" [<?=mktime(0, 0, 0, '05', '09', '2008')?>]");
w("00:00:00 05/10/2008: "+mktime(0, 0, 0, '05', '10', '2008')+" [<?=mktime(0, 0, 0, '05', '10', '2008')?>]");
w("00:00:00 05/11/2008: "+mktime(0, 0, 0, '05', '11', '2008')+" [<?=mktime(0, 0, 0, '05', '11', '2008')?>]");
}



And a free tip:
parseInt('09') it's an octet, 9 don't exist, return false or 0; parseInt('08') will fail too
parseInt('05') return 5
parseInt('010') return 8
parseInt('011') return 9
var n='09'*1; work fine ;) //parseInt it's not necesary


Please, make the textarea bigger ;)

if you need something more, please send me an e-mail :) (I visit usually your project, but not every day)
good luck!
Marc
http://www.nbsp.es

#30. Kevin on 16 January 2009

Member avatar: Kevin@ Marc Palau: We still need that line for the other examples to work, but I think we got it right now. Agree? Thanks for helping us out Marc!

#29. Marc Palau on 16 January 2009

Gravatar.com: Marc PalauKevin, the returned value by mktime on php without arguments (or with less arguments) is based on the current date, not [0,0,0,1,1,1972].

To solve, just delete this line:

d.setHours(0,0,0); d.setDate(1); d.setMonth(1); d.setYear(1972);


Thanks!!
Marc

#28. Kevin on 18 July 2008

Member avatar: Kevin@ jakes: Thanks for your input. I've updated the function

#27. jakes on 01 July 2008

Default avatar:jakeswhen iterating through a loop with negative values for month, on the transition to positive (zero month) php delivers expected values but js doesnt, ie:

alert(mktime(0,0,0,0,1,2008) + " - " + date('d M Y', mktime(0,0,0,0,1,2008)));


echo mktime(0, 0, 0, 0, 1, 2008)." - ".date("d M Y", mktime(0, 0, 0, 0, 1, 2008));


js: 1201788000 - 01 Feb 2008
php: 1196427600 - 01 Dec 2007

#26. Kevin on 21 May 2008

Member avatar: Kevin@ Yanno: I have found the bug. It lays in using '09'. When using a number 9, the function worked normally. So I investigated further and it turns out that

parseInt('09') // returns 0 instead of 9

Multiplying by 1 seems to work:
parseInt('09'*1) // returns 9 as it 'should'


Thank you for all the info.

#25. Yann on 21 May 2008

Default avatar:YannWell, this is my script :

function dateFr2timestamp(dateFr) {
var a_date = explode('/', dateFr); // array with {0:day; 1:month; 2:year)
return mktime(0,0,0,a_date[1],a_date[0],a_date[2]);
}

dateFr is any date to french format (dd/mm/yyyy) --> '08/05/2008', '01/01/2008', '31/12/2008', ...

With dates '08/05/2008' and '09/05/2008', there are problems : wrong timestamp

#24. Yannoo on 21 May 2008

Default avatar:Yannoo@Kevin
I've test different date. Look results :

alert(mktime(0, 0, 0, '05', '03', '2008')); // 1209765600
alert(mktime(0, 0, 0, '05', '04', '2008')); // 1209852000
alert(mktime(0, 0, 0, '05', '05', '2008')); // 1209938400
alert(mktime(0, 0, 0, '05', '06', '2008')); // 1210024800
alert(mktime(0, 0, 0, '05', '07', '2008')); // 1210111200
alert(mktime(0, 0, 0, '05', '08', '2008')); // 1209592800 (it should be 1210197600)
alert(mktime(0, 0, 0, '05', '09', '2008')); // 1209592800 (it should be 1210284000)
alert(mktime(0, 0, 0, '05', '10', '2008')); // 1210370400
alert(mktime(0, 0, 0, '05', '11', '2008')); // 1210465800


My timezone is Paris (GMT+1)

#23. @Kevin on 21 May 2008

Default avatar:@KevinI've test different date. Look results :

alert(mktime(0, 0, 0, 5, 03, 2008)); // 1209765600
alert(mktime(0, 0, 0, 5, 04, 2008)); // 1209852000
alert(mktime(0, 0, 0, 5, 05, 2008)); // 1209938400
alert(mktime(0, 0, 0, 5, 06, 2008)); // 1210024800
alert(mktime(0, 0, 0, 5, 07, 2008)); // 1210111200
alert(mktime(0, 0, 0, 5, 08, 2008)); // 1209592800
alert(mktime(0, 0, 0, 5, 09, 2008)); // 1209592800
alert(mktime(0, 0, 0, 5, 10, 2008)); // 1210370400
alert(mktime(0, 0, 0, 5, 11, 2008)); // 1210465800

#22. Kevin on 21 May 2008

Member avatar: Kevin@ Yannoo: What output are you getting? What should it be? Could this be related to the different timezones?

#21. Yannoo on 21 May 2008

Default avatar:YannooThere are a probleme with :

mktime(0, 0, 0, 5, 8, 2008);
mktime(0, 0, 0, 5, 9, 2008);

The timestamp is wrong !

#20. Kevin on 22 April 2008

Member avatar: Kevin@ Philip Peterson: If it's even possible to set the timezone for an entire page... I think you can only do this to a date object.

So maybe the right approach is to include a

+(date.getTimeZoneOffset() * 60 * 60);

In the test to neutralize the end user's timezone?

#19. Kevin on 22 April 2008

Member avatar: Kevin@ Philip Peterson: Hi Philip. Running the tests in a predefined timezone seems to be a good solution. We should opt for UTC I think. Then adjust the 'result' comment to match the UTC outcome of mktime. Much better indeed!

#18. Philip Peterson on 21 April 2008

Default avatar:Philip PetersonHmm, yeah, I figured that might be it, but does PHP do that? If not it might be a good idea to set the timezone to UTC/GMT/Something as a standard, or maybe including a config file to choose whether to leave it up to the user's computer or to set a standard?

#17. Kevin on 20 April 2008

Member avatar: Kevin@ Philip Peterson: Yeah that's related to the different timezones that we are in.

#16. Philip Peterson on 20 April 2008

Default avatar:Philip PetersonJust so you know... this is six hours off in firefox, I think? :-/ In the php_tester example, at least... I'm not sure what's doing it, though...

#15. Kevin on 19 April 2008

Member avatar: Kevin@ FGFEmperor: Thanks a lot!

#14. FGFEmperor on 18 April 2008

Default avatar:FGFEmperorOK, now setting a month to something greater than 11 would not increase the year...
My correction (also for hours, minutes and seconds...

var no, ma = 0, mb = 0, i = 0, d = new Date(), argv = arguments, argc = argv.length;
d.setHours(0,0,0); d.setDate(1); d.setMonth(1); d.setYear(1972);
 
var dateManip = {
0: function(tt){ return d.setHours(tt); },
1: function(tt){ return d.setMinutes(tt); },
2: function(tt){ set = d.setSeconds(tt); mb = d.getDate() - 1; return set; },
3: function(tt){ set = d.setMonth(parseInt(tt)-1); ma = d.getFullYear() - 1972; return set; },
4: function(tt){ return d.setDate(tt+mb); },
5: function(tt){ return d.setYear(tt+ma); }
};


Basically I added 'ma' and 'mb' to the vars, and summed that on Years and Days... =)

#13. Kevin on 02 April 2008

Member avatar: Kevin@ FGFEmperor: Good work man, thanks a lot, I'll update the function!

#12. FGFEmperor on 31 March 2008

Default avatar:FGFEmperorOK, another update:
change
d.setYear(1970);
to
d.setYear(1972);
... [more] Why? Because this way Leap Years are gonna work.

#11. FGFEmperor on 31 March 2008

Default avatar:FGFEmperorGot It!
Add

d.setHours(0,0,0); d.setDate(1); d.setMonth(1); d.setYear(1970);

after
var no, i = 0, d = new Date(), argv = arguments, argc = argv.length;


The catch here is that d = New Date(); sets d to the current date. What was happening is that today is the 31th, and I the function was setting the month to February, but the day was still the 31th, then it would set the month to March (since February has only 28/29 days). ;-)

#10. FGFEmperor on 31 March 2008

Default avatar:FGFEmperorI have no idea why, but this:
alert('PHP: <?= mktime(0,0,0,4,5,2009); ?>\nJS: '+mktime(0,0,0,4,5,2009));
returns this:
PHP: 1238900400
JS: 1241550694
... [more] Any idea why? That way, I should get 4/5/2009 for both, but I'm getting 5/5/2009 on the JS version...

#9. Kevin on 23 March 2008

Member avatar: Kevin@ gabriel paderni: The example won't reproduce:
http://kevin.vanzonneveld.net/test.php

But I've added the parseInt function. Does that solve the bug? Thanks gabriel!

#8. gabriel paderni on 22 March 2008

Default avatar:gabriel paderniIf i'm not mistaken there's a bug when using strings as parameters:

here is the test I've made:

<script type="text/javascript">
function mktimetest(t_php,t_js){
document.write(t_php+'
'
+t_js);
if(t_php!=t_js)document.write(' &lt;- Error');
document.write('
 
'
);
}
mktimetest(<?php echo mktime('01','30','10','06','21','2008')?>,mktime('01','30','10','06','21','2008'));
mktimetest(<?php echo mktime('01','30','10','07','21','2008')?>,mktime('01','30','10','07','21','2008'));
mktimetest(<?php echo mktime('01','30','10','08','21','2008')?>,mktime('01','30','10','08','21','2008'));
mktimetest(<?php echo mktime('01','30','10','09','21','2008')?>,mktime('01','30','10','09','21','2008'));
mktimetest(<?php echo mktime('01','30','10','10','21','2008')?>,mktime('01','30','10','10','21','2008'));
mktimetest(<?php echo mktime('01','30','10','11','21','2008')?>,mktime('01','30','10','11','21','2008'));
</script>


Strangely in the test this shows up only for August and September.

The solution may be to remove the leading zero when the parameter is a string.

(Tested with: Firefox and Internet explorer, same result.)

#7. Kevin on 02 March 2008

Member avatar: Kevin@ Michael White: Tried to reproduce the behavior, but wasn't able to:
http://kevin.vanzonneveld.net/test.php

#6. Michael White on 02 March 2008

Default avatar:Michael WhiteThe example appears to be incorrect for this function. I checked in a PHP script to verify this and to get the correct value.

The new example:

// *     example 1: mktime( 14, 10, 2, 2, 1, 2008 );
// * returns 1: 1201893002

#5. Kevin on 21 February 2008

Member avatar: Kevin@ baris ozdil: Thank your for your contribution, I've updated php.js and included you in the credits!

#4. baris ozdil on 21 February 2008

Default avatar:baris ozdilHi Kevin,
Thanks a lot for this nice library.
Just a small correction in mktime. In javascript the setMonth the month values are 0 based indexed. I think it should be something like this:

var dateManip = {
0: function(tt){ return d.setHours(tt); },
1: function(tt){ return d.setMinutes(tt); },
2: function(tt){ return d.setSeconds(tt); },
3: function(tt){ return d.setMonth(parseInt(tt)-1); },
4: function(tt){ return d.setDate(tt); },
5: function(tt){ return d.setYear(tt); }
};

#3. Kevin on 03 February 2008

Member avatar: Kevin@ _argos: One thing: array_rand produces javascript errors when you feed it an object instead of an array. maybe we should implement some sort of sanity checking there.

Other than that: Nice work again man, you've earned yourself 2 gold medals :)

#2. _argos on 03 February 2008

Default avatar:_argosKevin, a litle fix in array_product

function array_product ( input ) {
var Index = 0, Product = 1;

... [more] if ( input instanceof Array ) {
while ( Index < input.length ) {
Product *= ( !isNaN ( input [ Index ] ) ? input [ Index ] : 0 );
Index++;
}
} else {
Product = null;
}

return Product;
}

#1. _argos on 03 February 2008

Default avatar:_argosHi Kevin, I'm attaching 3 functions more for the PHP.js project.

function array_product ( input ) {
var Index = 0, Product = 1;

if ( input instanceof Array ) {
while ( Index < input.length ) {
Product *= ( !isNaN ( input [ Index ] ) ? input [ Index ] : 0 );
Index++;
}
} else {
product = null;
}

return product;
}
 
function array_rand ( input, num_req ) {
var Indexes = [];
var Ticks = num_req || 1;
var Check = {
Duplicate : function ( input, value ) {
var Exist = false, Index = 0;
while ( Index < input.length ) {
if ( input [ Index ] === value ) {
Exist = true;
break;
}
Index++;
}
return Exist;
}
};

if ( input instanceof Array && Ticks <= input.length ) {
while ( true ) {
var Rand = Math.floor ( ( Math.random ( ) * input.length ) );
if ( Indexes.length === Ticks ) { break; }
if ( !Check.Duplicate ( Indexes, Rand ) ) { Indexes.push ( Rand ); }
}
} else {
Indexes = null;
}

return ( ( Ticks == 1 ) ? Indexes.join ( ) : Indexes );
}
 
function compact ( var_names ) {
var Index = 0, Matrix = {};
var Process = function ( value ) {
for ( var i = 0; i < value.length; i++ ) {
var key_value = value [ i ];
if ( key_value instanceof Array ) {
Process ( key_value );
} else {
if ( typeof window [ key_value ] !== 'undefined' ) {
Matrix [ key_value ] = window [ key_value ];
}
}
}
return true;
};

Process ( arguments );
 
return Matrix;
}