/home/mjc1/public_html/manage/writeexcel/functions.writeexcel_utility.inc.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php

/*
 * Copyleft 2002 Johann Hanne
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place,
 * Suite 330, Boston, MA  02111-1307 USA
 */

/*
 * This is the Spreadsheet::WriteExcel Perl package ported to PHP
 * Spreadsheet::WriteExcel was written by John McNamara, jmcnamara@cpan.org
 */

/*
 * Converts numeric $row/$col notation to an Excel cell reference string in
 * A1 notation.
 */
function xl_rowcol_to_cell($row$col$row_abs=false$col_abs=false) {

    
$row_abs $row_abs '$' '';
    
$col_abs $col_abs '$' '';

    
$int  floor($col 26);
    
$frac $col 26;

    
$chr1 ''// Most significant character in AA1

    
if ($int 0) {
        
$chr1 chr(ord('A') + $int 1);
    }

    
$chr2 chr(ord('A') + $frac);

    
// Zero index to 1-index
    
$row++;

    return 
$col_abs.$chr1.$chr2.$row_abs.$row;
}

/*
 * Converts an Excel cell reference string in A1 notation
 * to numeric $row/$col notation.
 *
 * Returns: array($row, $col, $row_absolute, $col_absolute)
 *
 * The $row_absolute and $col_absolute parameters aren't documented because
 * they are mainly used internally and aren't very useful to the user.
 */
function xl_cell_to_rowcol($cell) {

    
preg_match('/(\$?)([A-I]?[A-Z])(\$?)(\d+)/'$cell$reg);

    
$col_abs = ($reg[1] == "") ? 1;
    
$col     $reg[2];
    
$row_abs = ($reg[3] == "") ? 1;
    
$row     $reg[4];

    
// Convert base26 column string to number
    // All your Base are belong to us.
    
$chars  preg_split('//'$col, -1PREG_SPLIT_NO_EMPTY);
    
$expn   0;
    
$col    0;

    while (
sizeof($chars)>0) {
        
$char array_pop($chars); // Least significant character first
        
$col += (ord($char) - ord('A') + 1) * pow(26$expn);
        
$expn++;
    }

    
// Convert 1-index to zero-index
    
$row--;
    
$col--;

    return array(
$row$col$row_abs$col_abs);
}

/*
 * Increments the row number of an Excel cell reference string
 * in A1 notation.
 * For example C4 to C5
 *
 * Returns: a cell reference string in A1 notation.
 */
function xl_inc_row($cell) {
    list(
$row$col$row_abs$col_abs) = xl_cell_to_rowcol($cell);
    return 
xl_rowcol_to_cell(++$row$col$row_abs$col_abs);
}

/*
 * Decrements the row number of an Excel cell reference string
 * in A1 notation.
 * For example C4 to C3
 *
 * Returns: a cell reference string in A1 notation.
 */
function xl_dec_row($cell) {
    list(
$row$col$row_abs$col_abs) = xl_cell_to_rowcol($cell);
    return 
xl_rowcol_to_cell(--$row$col$row_abs$col_abs);
}

/*
 * Increments the column number of an Excel cell reference string
 * in A1 notation.
 * For example C3 to D3
 *
 * Returns: a cell reference string in A1 notation.
 */
function xl_inc_col($cell) {
    list(
$row$col$row_abs$col_abs) = xl_cell_to_rowcol($cell);
    return 
xl_rowcol_to_cell($row, ++$col$row_abs$col_abs);
}

/*
 * Decrements the column number of an Excel cell reference string
 * in A1 notation.
 * For example C3 to B3
 *
 * Returns: a cell reference string in A1 notation.
 */
function xl_dec_col($cell) {
    list(
$row$col$row_abs$col_abs) = xl_cell_to_rowcol($cell);
    return 
xl_rowcol_to_cell($row, --$col$row_abs$col_abs);
}

function 
xl_date_list($year$month=1$day=1,
                      
$hour=0$minute=0$second=0) {

    
$monthdays=array(312831303130313130313031);

    
// Leap years since 1900 (year is dividable by 4)
    
$leapyears=floor(($year-1900)/4);

    
// Non-leap years since 1900 (year is dividable by 100)
    
$nonleapyears=floor(($year-1900)/100);

    
// Non-non-leap years since 1900 (year is dividable by 400)
    // (Yes, it MUST be "1600", not "1900")
    
$nonnonleapyears=floor(($year-1600)/400);

    
// Don't count the leap day of the specified year if it didn't
    // happen yet (i.e. before 1 March)
    //
    // Please note that $leapyears becomes -1 for dates before 1 March 1900;
    // this is not logical, but later we will add a day for Excel's
    // phantasie leap day in 1900 without checking if the date is actually
    // after 28 February 1900; so these two logic errors "neutralize"
    // each other
    
if ($year%4==&& $month<3) {
      
$leapyears--;
    }

    
$days=365*($year-1900)+$leapyears-$nonleapyears+$nonnonleapyears;

    for (
$c=1;$c<$month;$c++) {
      
$days+=$monthdays[$c-1];
    }

    
// Excel actually wants the days since 31 December 1899, not since
    // 1 January 1900; this will also add this extra day
    
$days+=$day;

    
// Excel treats 1900 erroneously as a leap year, so we must
    // add one day
    //
    // Please note that we DON'T have to check if the date is after
    // 28 February 1900, because for such dates $leapyears is -1
    // (see above)
    
$days++;

    return (float)(
$days+($hour*3600+$minute*60+$second)/86400);
}

function 
xl_parse_time($time) {

    if (
preg_match('/(\d{1,2}):(\d\d):?((?:\d\d)(?:\.\d+)?)?(?:\s+)?(am|pm)?/i'$time$reg)) {

        
$hours       $reg[1];
        
$minutes     $reg[2];
        
$seconds     $reg[3] || 0;
        
$meridian    strtolower($reg[4]) || '';

        
// Normalise midnight and midday
        
if ($hours == 12 && $meridian != '') {
            
$hours 0;
        }

        
// Add 12 hours to the pm times. Note: 12.00 pm has been set to 0.00.
        
if ($meridian == 'pm') {
            
$hours += 12;
        }

        
// Calculate the time as a fraction of 24 hours in seconds
        
return (float)(($hours*3600+$minutes*60+$seconds)/86400);

    } else {
        return 
false// Not a valid time string
    
}
}

/*
 * Automagically converts almost any date/time string to an Excel date.
 * This function will always only be as good as strtotime() is.
 */
function xl_parse_date($date) {

    
$unixtime=strtotime($date);

    
$year=date("Y"$unixtime);
    
$month=date("m"$unixtime);
    
$day=date("d"$unixtime);
    
$hour=date("H"$unixtime);
    
$minute=date("i"$unixtime);
    
$second=date("s"$unixtime);

    
// Convert to Excel date
    
return xl_date_list($year$month$day$hour$minute$second);
}

/*
 * Dummy function to be "compatible" to Spreadsheet::WriteExcel
 */
function xl_parse_date_init() {
    
// Erm... do nothing...
    // strtotime() doesn't require anything to be initialized
    // (do not ask me how to set the timezone...)
}

/*
 * xl_decode_date_EU() and xl_decode_date_US() are mapped
 * to xl_parse_date(); there seems to be no PHP function that
 * differentiates between EU and US dates; I've never seen
 * somebody using dd/mm/yyyy anyway, it always should be one of:
 * - yyyy-mm-dd (international)
 * - dd.mm.yyyy (european)
 * - mm/dd/yyyy (english/US/british?)
*/

function xl_decode_date_EU($date) {
    return 
xl_parse_date($date);
}

function 
xl_decode_date_US($date) {
    return 
xl_parse_date($date);
}

function 
xl_date_1904($exceldate) {

    if (
$exceldate 1462) {
        
// date is before 1904
        
$exceldate 0;
    } else {
        
$exceldate -= 1462;
    }

    return 
$exceldate;
}

?>