-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
executable file
·306 lines (303 loc) · 6.67 KB
/
functions.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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<?php
/*
Panglossa go!Johnny PHP library
version 8.0
release 2017-07-05
Please see the readme.txt file that goes with this source.
Licensed under the GPL, please see:
http://www.gnu.org/licenses/gpl-3.0-standalone.html
Araçatuba - SP - Brazil - 2017
*/
////////////////////////////////////////////////
/** Auxiliary functions.
* Generic functions which don't fit in any class or which are too generic and suited to several classes.
* A function should be placed here only as a means of last resort.
* Ideal procedure is to place all functions inside class definitions.
*/
/******************************************************/
/******************************************************/
function o($props = array(), $obj = null, $extraprops = array()){
$res = $obj;
if(is_array($props)){
foreach($props as $key => $val){
$res->p($key, $val);
}
}else{
$res->setID($props);
}
if(count($extraprops)>0){
foreach($extraprops as $k=>$v){
$res->p($k, $v);
}
}
return $res;
}
/******************************************************/
function parse($src = '', $coldel = '|', $rowdel = "\n"){
/*
a generic parser, turning a string into a bidimensional array
*/
$res = array();
$src = trim($src);
if($src!=''){
$rows = explode($rowdel, $src);
foreach($rows as $row){
$cells = explode($coldel, $row);
$res[] = $cells;
}
}
return $res;
}
/*****************************************************/
function isAssoc($arr){
//source: http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential
//checks whether an array is associative.
//return array_keys($arr) !== range(0, count($arr) - 1);
foreach(array_keys($arr) as $key) {
if (!is_int($key)){
return true;
}
}
return false;
}
/*****************************************************/
function ser($data = array()){
return base64_encode(serialize($data));
}
/*****************************************************/
function unser($s = ''){
return unserialize(base64_decode($s));
}
/*****************************************************/
function currenturl(){
if(!isset($_SERVER['REQUEST_URI'])){
$serverrequri = $_SERVER['PHP_SELF'];
}else{
$serverrequri = $_SERVER['REQUEST_URI'];
}
if(strpos($serverrequri, '?')===false){
if(trim($_SERVER['QUERY_STRING'])!=''){
$serverrequri .= "?{$_SERVER['QUERY_STRING']}";
}
}
$s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : "";
$protocol = substr(strtolower($_SERVER["SERVER_PROTOCOL"]), 0, strpos(strtolower($_SERVER["SERVER_PROTOCOL"]), "/")) . $s;
$port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
return $protocol."://".$_SERVER['SERVER_NAME'].$port.$serverrequri;
}
/*****************************************************/
function strgetpart($delimiter = ' ', $string = '', $index = 0, $default = ''){
if((trim($string)=='')or(trim($delimiter)=='')or(!is_numeric($index))){
return $default;
}else{
$parts = explode($delimiter, $string);
if(isset($parts[$index])){
return $parts[$index];
}else{
return $default;
}
}
}
/*****************************************************/
function str_getpart($delimiter = ' ', $string = '', $index = 0, $default = ''){
return strgetpart($delimiter, $string, $index, $default);
}
/*****************************************************/
function str_part($delimiter = ' ', $string = '', $index = 0, $default = ''){
return strgetpart($delimiter, $string, $index, $default);
}
/*****************************************************/
function strpart($delimiter = ' ', $string = '', $index = 0, $default = ''){
return strgetpart($delimiter, $string, $index, $default);
}
/*****************************************************/
function escapeforjs($s){
/*
With information from http://www.javascripter.net/faq/accentedcharacters.htm
*/
$accented = array('À',
'Á',
'Â',
'Ã',
'Ä',
'Å',
'Æ',
'Ç',
'È',
'É',
'Ê',
'Ë',
'Ì',
'Í',
'Î',
'Ï',
'Ð',
'Ñ',
'Ò',
'Ó',
'Ô',
'Õ',
'Ö',
'Ø',
'Ù',
'Ú',
'Û',
'Ü',
'Ý',
'Þ',
'ß',
'à',
'á',
'â',
'ã',
'ä',
'å',
'æ',
'ç',
'è',
'é',
'ê',
'ë',
'ì',
'í',
'î',
'ï',
'ð',
'ñ',
'ò',
'ó',
'ô',
'õ',
'ö',
'ø',
'ù',
'ú',
'û',
'ü',
'ý',
'þ',
'ÿ',
'Œ',
'œ',
'Š',
'š',
'Ÿ',
'ƒ'
);
$corrected = array('\xC0',
'\xC1',
'\xC2',
'\xC3',
'\xC4',
'\xC5',
'\xC6',
'\xC7',
'\xC8',
'\xC9',
'\xCA',
'\xCB',
'\xCC',
'\xCD',
'\xCE',
'\xCF',
'\xD0',
'\xD1',
'\xD2',
'\xD3',
'\xD4',
'\xD5',
'\xD6',
'\xD8',
'\xD9',
'\xDA',
'\xDB',
'\xDC',
'\xDD',
'\xDE',
'\xDF',
'\xE0',
'\xE1',
'\xE2',
'\xE3',
'\xE4',
'\xE5',
'\xE6',
'\xE7',
'\xE8',
'\xE9',
'\xEA',
'\xEB',
'\xEC',
'\xED',
'\xEE',
'\xEF',
'\xF0',
'\xF1',
'\xF2',
'\xF3',
'\xF4',
'\xF5',
'\xF6',
'\xF8',
'\xF9',
'\xFA',
'\xFB',
'\xFC',
'\xFD',
'\xFE',
'\xFF',
'\u0152',
'\u0153',
'\u0160',
'\u0161',
'\u0178',
'\u0192'
);
$r = $s;
for ($i = 0; $i < count($accented); $i++) {
$r = str_replace($accented[$i], $corrected[$i], $r);
}
return $r;
}
////////////////////////////////////////////////////////////////
function substr_left($s = '', $c = 0){
$r = '';
if ((trim($s)!='')&&($c>0)){
$r = substr($s, 0, $c);
}
return $r;
}
////////////////////////////////////////////////////////////////
function substr_right($s = '', $c = 0){
$r = '';
if ((trim($s)!='')&&($c>0)){
$r = substr($s, "-{$c}");
}
return $r;
}
////////////////////////////////////////////////////////////////
function substrleft($s = '', $c = 0){
return substr_left($s, $c);
}
////////////////////////////////////////////////////////////////
function substrright($s = '', $c = 0){
return substr_right($s, $c);
}
////////////////////////////////////////////////////////////////
function getCalledClass(){
if(function_exists('get_called_class')){
return get_called_class();
}else{
$arr = array();
$arrTraces = debug_backtrace();
foreach ($arrTraces as $arrTrace){
if(!array_key_exists("class", $arrTrace)) continue;
if(count($arr)==0) $arr[] = $arrTrace['class'];
else if(get_parent_class($arrTrace['class'])==end($arr)) $arr[] = $arrTrace['class'];
}
return end($arr);
}
}
////////////////////////////////////////////////////////////////
?>