~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/php/PhpDate__.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2009-03-18 23:09:50 UTC
  • mfrom: (3.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090318230950-pgfuxg2ucolps74t
Tags: 1:2.2-2
* Use ocamlfind to locate and use the libraries xml-light and extlib
  which already exist in Debian as separate packages.
  (Closes: #519630)
* Fixed compile error with camlp4 3.11, thanks to Stéphane Glondu.
  (Closes: #519627)
* Use quilt instead of dpatch for patches, and describe how to use
  quilt in Debian.source (thanks to Russ Allbery).
* Added a Vcs-Hg control filed to indicate the location of the public
  repository.
* Bumped Standards-Version to 3.8.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
27
class PhpDate__ //implements Date
 
28
{
 
29
        static var __name__ = ["Date"];
 
30
        private var __t : Float;
 
31
 
 
32
        public function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) {
 
33
                __t = untyped __call__("mktime", hour, min, sec, month+1, day, year);
 
34
        }
 
35
 
 
36
        public function getTime() : Float {
 
37
                return __t*1000;
 
38
        }
 
39
        
 
40
        public function getPhpTime() : Float {
 
41
                return __t;
 
42
        }
 
43
 
 
44
        public function getFullYear() : Int {
 
45
                return untyped __call__("intval", __call__("date", "Y", this.__t));
 
46
        }
 
47
 
 
48
        public function getMonth() : Int {
 
49
                return -1 + untyped __call__("intval", __call__("date", "n", this.__t));
 
50
        }
 
51
 
 
52
        public function getDate() : Int {
 
53
                return untyped __call__("intval", __call__("date", "j", this.__t));
 
54
        }
 
55
 
 
56
        public function getHours() : Int {
 
57
                return untyped __call__("intval", __call__("date", "G", this.__t));
 
58
        }
 
59
 
 
60
        public function getMinutes() : Int {
 
61
                return untyped __call__("intval", __call__("date", "i", this.__t));
 
62
        }
 
63
 
 
64
        public function getSeconds() : Int {
 
65
                return untyped __call__("intval", __call__("date", "s", this.__t));
 
66
        }
 
67
 
 
68
        public function getDay() : Int {
 
69
                return untyped __call__("intval", __call__("date", "w", this.__t));
 
70
        }
 
71
 
 
72
        public function toString():String {
 
73
                return untyped __call__("date", "Y-m-d H:i:s", this.__t);
 
74
        }
 
75
 
 
76
        public static function now() {
 
77
                return fromPhpTime(untyped __call__("time"));
 
78
        }
 
79
 
 
80
        public static function fromPhpTime( t : Float ){
 
81
                var d = new PhpDate__(2000,1,1,0,0,0);
 
82
                d.__t = t;
 
83
                return d;
 
84
        }
 
85
        
 
86
        public static function fromTime( t : Float ){
 
87
                var d = new PhpDate__(2000,1,1,0,0,0);
 
88
                d.__t = t/1000;
 
89
                return d;
 
90
        }
 
91
 
 
92
        public static function fromString( s : String ) {
 
93
                return fromPhpTime(untyped __call__("strtotime", s));
 
94
        }
 
95
}
 
96
 
 
97