-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSalat.php
489 lines (411 loc) · 15.5 KB
/
Salat.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<?php
namespace ArabyPHP\Salat;
class Salat
{
/**
* السنة.
*
* @ignore
*/
protected $year = 1975;
/**
* الشهر.
*
* @ignore
*/
protected $month = 8;
/**
* اليوم.
*
* @ignore
*/
protected $day = 2;
/**
* فرق التوقيت العالمى.
*
* @ignore
*/
protected $zone = 2;
/**
* خط الطول الجغرافى للمكان.
*
* @ignore
*/
protected $long = 37.15861;
/**
* خط العرض الجغرافى.
*
* @ignore
*/
protected $lat = 36.20278;
/**
* الارتفاع عن سطح البحر.
*
* @ignore
*/
protected $elevation = 0;
/**
* زاوية الشروق والغروب.
*
* @ignore
*/
protected $AB2 = -0.833333;
/**
* زاوية العشاء
*
* @ignore
*/
protected $AG2 = -18;
/**
* زاوية الفجر.
*
* @ignore
*/
protected $AJ2 = -18;
/**
* المذهب.
*
* @ignore
*/
protected $school = 'Shafi';
/**
* الطائفة.
*
* @ignore
*/
protected $view = 'Sunni';
/**
* Setting date of day for Salat calculation.
*
* @param int $m Month of date you want to calculate Salat in
* @param int $d Day of date you want to calculate Salat in
* @param int $y Year (four digits) of date you want to calculate Salat in
*
* @return object $this to build a fluent interface
*
*/
public function setDate($m = 8, $d = 2, $y = 1975)
{
if (is_numeric($y) && $y > 0 && $y < 3000) {
$this->year = floor($y);
}
if (is_numeric($m) && $m >= 1 && $m <= 12) {
$this->month = floor($m);
}
if (is_numeric($d) && $d >= 1 && $d <= 31) {
$this->day = floor($d);
}
return $this;
}
/**
* Setting location information for Salat calculation.
*
* @param decimal $l1 Latitude of location you want to calculate Salat time in
* @param decimal $l2 Longitude of location you want to calculate Salat time in
* @param int $z Time Zone, offset from UTC (see also Greenwich Mean Time)
* @param int $e Elevation, it is the observer's height in meters.
*
* @return object $this to build a fluent interface
*
*/
public function setLocation($l1 = 36.20278, $l2 = 37.15861, $z = 2, $e = 0)
{
if (is_numeric($l1) && $l1 >= -180 && $l1 <= 180) {
$this->lat = $l1;
}
if (is_numeric($l2) && $l2 >= -180 && $l2 <= 180) {
$this->long = $l2;
}
if (is_numeric($z) && $z >= -12 && $z <= 12) {
$this->zone = floor($z);
}
if (is_numeric($e)) {
$this->elevation = $e;
}
return $this;
}
/**
* Setting rest of Salat calculation configuration.
*
* Convention Fajr Angle Isha Angle
*
* Muslim World League -18 -17
*
* Islamic Society of North America (ISNA) -15 -15
*
* Egyptian General Authority of Survey -19.5 -17.5
*
* Umm al-Qura University, Makkah -18.5
* Isha 90 min after Maghrib, 120 min during Ramadan
*
* University of Islamic Sciences, Karachi -18 -18
*
* Institute of Geophysics, University of Tehran -17.7 -14(*)
*
* Shia Ithna Ashari, Leva Research Institute, Qum -16 -14
*
* (*) Isha angle is not explicitly defined in Tehran method
* Fajr Angle = $fajrArc, Isha Angle = $ishaArc
*
* - حزب العلماء في لندن لدول
* أوروبا في خطوط عرض تزيد على 48
*
* $ishaArc = -17
* $fajrArc = -17
*
* @param string $sch [Shafi|Hanafi] to define Muslims Salat
* calculation method (affect Asr time)
* @param decimal $sunriseArc Sun rise arc (default value is -0.833333)
* @param decimal $ishaArc Isha arc (default value is -18)
* @param decimal $fajrArc Fajr arc (default value is -18)
* @param string $view [Sunni|Shia] to define Muslims Salat calculation
* method (affect Maghrib and Midnight time)
*
* @return object $this to build a fluent interface
*
*/
public function setConf(
$sch = 'Shafi', $sunriseArc = -0.833333, $ishaArc = -17.5,
$fajrArc = -19.5, $view = 'Sunni'
) {
$sch = ucfirst($sch);
if ($sch == 'Shafi' || $sch == 'Hanafi') {
$this->school = $sch;
}
if (is_numeric($sunriseArc) && $sunriseArc >= -180 && $sunriseArc <= 180) {
$this->AB2 = $sunriseArc;
}
if (is_numeric($ishaArc) && $ishaArc >= -180 && $ishaArc <= 180) {
$this->AG2 = $ishaArc;
}
if (is_numeric($fajrArc) && $fajrArc >= -180 && $fajrArc <= 180) {
$this->AJ2 = $fajrArc;
}
if ($view == 'Sunni' || $view == 'Shia') {
$this->view = $view;
}
return $this;
}
/**
* Alias for getPrayTime2 method.
*
* @return array of Salat times + sun rise in the following format
* hh:mm where hh is the hour in local format and 24 mode
* mm is minutes with leading zero to be 2 digits always
* array items is [$Fajr, $Sunrise, $Dhuhr, $Asr, $Maghrib,
* $Isha, $Sunset, $Midnight, $Imsak, array $timestamps]
*
* @source http://praytimes.org/calculation
*/
public function getPrayTime()
{
$prayTime = $this->getPrayTime2();
return $prayTime;
}
/**
* Calculate Salat times for the date set in setSalatDate methode, and
* location set in setSalatLocation.
*
* @return array of Salat times + sun rise in the following format
* hh:mm where hh is the hour in local format and 24 mode
* mm is minutes with leading zero to be 2 digits always
* array items is [$Fajr, $Sunrise, $Dhuhr, $Asr, $Maghrib,
* $Isha, $Sunset, $Midnight, $Imsak, array $timestamps]
*
* @source http://praytimes.org/calculation
*/
public function getPrayTime2()
{
$unixtimestamp = mktime(0, 0, 0, $this->month, $this->day, $this->year);
// Calculate Julian date
if ($this->month <= 2) {
$year = $this->year - 1;
$month = $this->month + 12;
} else {
$year = $this->year;
$month = $this->month;
}
$A = floor($year / 100);
$B = 2 - $A + floor($A / 4);
$jd = floor(365.25 * ($year + 4716)) + floor(30.6001 * ($month + 1))
+ $this->day + $B - 1524.5;
// The following algorithm from U.S. Naval Observatory computes the
// Sun's angular coordinates to an accuracy of about 1 arcminute within
// two centuries of 2000.
$d = $jd - 2451545.0; // jd is the given Julian date
// The following algorithm from U.S. Naval Observatory computes the Sun's
// angular coordinates to an accuracy of about 1 arcminute within two
// centuries of 2000
// http://aa.usno.navy.mil/faq/docs/SunApprox.php
// Note: mod % in PHP ignore decimels!
$g = 357.529 + 0.98560028 * $d;
$g = $g % 360 + ($g - ceil($g) + 1);
$q = 280.459 + 0.98564736 * $d;
$q = $q % 360 + ($q - ceil($q) + 1);
$L = $q + 1.915 * sin(deg2rad($g)) + 0.020 * sin(deg2rad(2 * $g));
$L = $L % 360 + ($L - ceil($L) + 1);
$R = 1.00014 - 0.01671 * cos(deg2rad($g)) - 0.00014 * cos(deg2rad(2 * $g));
$e = 23.439 - 0.00000036 * $d;
$RA = rad2deg(atan2(cos(deg2rad($e)) * sin(deg2rad($L)), cos(deg2rad($L))))
/ 15;
if ($RA < 0) {
$RA = 24 + $RA;
}
// The declination of the Sun is the angle between the rays of the sun and
// the plane of the earth equator. The declination of the Sun changes
// continuously throughout the year. This is a consequence of the Earth's
// tilt, i.e. the difference in its rotational and revolutionary axes.
// declination of the Sun
$D = rad2deg(asin(sin(deg2rad($e)) * sin(deg2rad($L))));
// The equation of time is the difference between time as read from sundial
// and a clock. It results from an apparent irregular movement of the Sun
// caused by a combination of the obliquity of the Earth's rotation axis
// and the eccentricity of its orbit. The sundial can be ahead (fast) by
// as much as 16 min 33 s (around November 3) or fall behind by as much as
// 14 min 6 s (around February 12), as shown in the following graph:
// http://en.wikipedia.org/wiki/File:Equation_of_time.png
$EqT = ($q / 15) - $RA; // equation of time
// Dhuhr
// When the Sun begins to decline after reaching its highest point in the sky
$Dhuhr = 12 + $this->zone - ($this->long / 15) - $EqT;
if ($Dhuhr < 0) {
$Dhuhr = 24 + $Dhuhr;
}
// Sunrise & Sunset
// If the observer's location is higher than the surrounding terrain, we
// can consider this elevation into consideration by increasing the above
// constant 0.833 by 0.0347 × sqrt(elevation), where elevation is the
// observer's height in meters.
$alpha = 0.833 + 0.0347 * sqrt($this->elevation);
$n = -1 * sin(deg2rad($alpha)) - sin(deg2rad($this->lat)) * sin(deg2rad($D));
$d = cos(deg2rad($this->lat)) * cos(deg2rad($D));
// date_sun_info Returns an array with information about sunset/sunrise
// and twilight begin/end
$Sunrise = $Dhuhr - (1 / 15) * rad2deg(acos($n / $d));
$Sunset = $Dhuhr + (1 / 15) * rad2deg(acos($n / $d));
// Fajr & Isha
// Imsak: The time to stop eating Sahur (for fasting), slightly before Fajr.
// Fajr: When the sky begins to lighten (dawn).
// Isha: The time at which darkness falls and there is no scattered light
// in the sky.
$n = -1 * sin(deg2rad(abs($this->AJ2))) - sin(deg2rad($this->lat))
* sin(deg2rad($D));
$Fajr = $Dhuhr - (1 / 15) * rad2deg(acos($n / $d));
$Imsak = $Fajr - (10 / 60);
$n = -1 * sin(deg2rad(abs($this->AG2))) - sin(deg2rad($this->lat))
* sin(deg2rad($D));
$Isha = $Dhuhr + (1 / 15) * rad2deg(acos($n / $d));
// Asr
// The following formula computes the time difference between the mid-day
// and the time at which the object's shadow equals t times the length of
// the object itself plus the length of that object's shadow at noon
if ($this->school == 'Shafi') {
$n = sin(atan(1 / (1 + tan(deg2rad($this->lat - $D)))))
- sin(deg2rad($this->lat)) * sin(deg2rad($D));
} else {
$n = sin(atan(1 / (2 + tan(deg2rad($this->lat - $D)))))
- sin(deg2rad($this->lat)) * sin(deg2rad($D));
}
$Asr = $Dhuhr + (1 / 15) * rad2deg(acos($n / $d));
// Maghrib
// In the Sunni's point of view, the time for Maghrib prayer begins once
// the Sun has completely set beneath the horizon, that is, Maghrib = Sunset
// (some calculators suggest 1 to 3 minutes after Sunset for precaution)
$MaghribSunni = $Sunset + 2 / 60;
// In the Shia's view, however, the dominant opinion is that as long as
// the redness in the eastern sky appearing after sunset has not passed
// overhead, Maghrib prayer should not be performed.
$n = -1 * sin(deg2rad(4)) - sin(deg2rad($this->lat)) * sin(deg2rad($D));
$MaghribShia = $Dhuhr + (1 / 15) * rad2deg(acos($n / $d));
if ($this->view == 'Sunni') {
$Maghrib = $MaghribSunni;
} else {
$Maghrib = $MaghribShia;
}
// Midnight
// Midnight is generally calculated as the mean time from Sunset to Sunrise
$MidnightSunni = $Sunset + 0.5 * ($Sunrise - $Sunset);
if ($MidnightSunni > 12) {
$MidnightSunni = $MidnightSunni - 12;
}
// In Shia point of view, the juridical midnight (the ending time for
// performing Isha prayer) is the mean time from Sunset to Fajr
$MidnightShia = 0.5 * ($Fajr - $Sunset);
if ($MidnightShia > 12) {
$MidnightShia = $MidnightShia - 12;
}
if ($this->view == 'Sunni') {
$Midnight = $MidnightSunni;
} else {
$Midnight = $MidnightShia;
}
// Result.ThlthAkhir:= Result.Fajr-(24-Result.Maghrib + Result.Fajr)/3;
// Result.Doha := Result.Sunrise+(15/60);
// if isRamadan then (Um-Al-Qura calendar)
// Result.Isha := Result.Maghrib+2
// else Result.Isha := Result.Maghrib+1.5;
$times = [$Fajr, $Sunrise, $Dhuhr, $Asr, $Maghrib, $Isha, $Sunset, $Midnight, $Imsak];
// Convert number after the decimal point into minutes
foreach ($times as $index => $time) {
$hours = floor($time);
$minutes = round(($time - $hours) * 60);
if ($minutes < 10) {
$minutes = "0$minutes";
}
$times[$index] = "$hours:$minutes";
$times[9][$index] = $unixtimestamp + 3600 * $hours + 60 * $minutes;
if ($index == 7 && $hours < 6) {
$times[9][$index] += 24 * 3600;
}
}
return $times;
}
/**
* Determine Qibla direction using basic spherical trigonometric formula.
*
* @return float Qibla Direction (from the north direction) in degrees
*
* @source http://www.patriot.net/users/abdali/ftp/qibla.pdf
*/
public function getQibla()
{
// The geographical coordinates of the Ka'ba
$K_latitude = 21.423333;
$K_longitude = 39.823333;
$latitude = $this->lat;
$longitude = $this->long;
$numerator = sin(deg2rad($K_longitude - $longitude));
$denominator = (cos(deg2rad($latitude)) * tan(deg2rad($K_latitude))) -
(sin(deg2rad($latitude))
* cos(deg2rad($K_longitude - $longitude)));
$q = atan($numerator / $denominator);
$q = rad2deg($q);
if ($this->lat > 21.423333) {
$q += 180;
}
return $q;
}
/**
* Convert coordinates presented in degrees, minutes and seconds
* (i.e. 12°34'56"S formula) into usual float number in degree unit scale
* (i.e. -12.5822 value).
*
* @param string $value Coordinate presented in degrees, minutes and seconds
* (i.e. 12°34'56"S formula)
*
* @return float Equivalent float number in degree unit scale
* (i.e. -12.5822 value)
*
*/
public function coordinate2deg($value)
{
$pattern = "/(\d{1,2})°((\d{1,2})')?((\d{1,2})\")?([NSEW])/i";
preg_match($pattern, $value, $matches);
$degree = $matches[1] + ($matches[3] / 60) + ($matches[5] / 3600);
$direction = strtoupper($matches[6]);
if ($direction == 'S' || $direction == 'W') {
$degree = -1 * $degree;
}
return $degree;
}
}