PhpDate__.hx 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright (c) 2005, The haXe Project Contributors
  3. * All rights reserved.
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * - Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * - Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY THE HAXE PROJECT CONTRIBUTORS "AS IS" AND ANY
  14. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  15. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  16. * DISCLAIMED. IN NO EVENT SHALL THE HAXE PROJECT CONTRIBUTORS BE LIABLE FOR
  17. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  18. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  19. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  20. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  21. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  22. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  23. * DAMAGE.
  24. */
  25. package php;
  26. class PhpDate__ //implements Date
  27. {
  28. static var __name__ = ["Date"];
  29. private var __t : Float;
  30. public function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) {
  31. __t = untyped __call__("mktime", hour, min, sec, month+1, day, year);
  32. }
  33. public function getTime() : Float {
  34. return __t*1000;
  35. }
  36. public function getPhpTime() : Float {
  37. return __t;
  38. }
  39. public function getFullYear() : Int {
  40. return untyped __call__("intval", __call__("date", "Y", this.__t));
  41. }
  42. public function getMonth() : Int {
  43. return -1 + untyped __call__("intval", __call__("date", "n", this.__t));
  44. }
  45. public function getDate() : Int {
  46. return untyped __call__("intval", __call__("date", "j", this.__t));
  47. }
  48. public function getHours() : Int {
  49. return untyped __call__("intval", __call__("date", "G", this.__t));
  50. }
  51. public function getMinutes() : Int {
  52. return untyped __call__("intval", __call__("date", "i", this.__t));
  53. }
  54. public function getSeconds() : Int {
  55. return untyped __call__("intval", __call__("date", "s", this.__t));
  56. }
  57. public function getDay() : Int {
  58. return untyped __call__("intval", __call__("date", "w", this.__t));
  59. }
  60. public function toString():String {
  61. return untyped __call__("date", "Y-m-d H:i:s", this.__t);
  62. }
  63. public static function now() {
  64. return fromPhpTime(untyped __call__("time"));
  65. }
  66. public static function fromPhpTime( t : Float ){
  67. var d = new PhpDate__(2000,1,1,0,0,0);
  68. d.__t = t;
  69. return d;
  70. }
  71. public static function fromTime( t : Float ){
  72. var d = new PhpDate__(2000,1,1,0,0,0);
  73. d.__t = t/1000;
  74. return d;
  75. }
  76. public static function fromString( s : String ) {
  77. return fromPhpTime(untyped __call__("strtotime", s));
  78. }
  79. }