Proooooooooooc mi to pise undefined function easter_date()
Fórum › PHP
Velikonoce
Treba protoze v samotnem PHP zadna takova neni :?
Zkus easter_days() :cigo:
http://sk.php.net/manual/en/function.easter-date.php
Takato funkcia existuje. Bud mas php2 :)) alebo si dal rok nad limit funkcie...
Neviem , pozri na en link hore...
No...ja mam original CHM manual manual z listopadu roku 2005 a ta funkce tam neni
dalaman napsal:
http://sk.php.net/manual/en/function.easter-date.php
Takato funkcia existuje. Bud mas php2 :)) alebo si dal rok nad limit funkcie...
Neviem , pozri na en link hore...
Rok sem dal 2006 (a ten je v limutu.... na webzdarma o verzi php pro jistotu nic nepisou (a nebo sem to prehledl)
Ja mam na svem webu phpinfo() - je tam 4.3.4 :((
http://www.matejz.wz.cz/info.php
Na tom odkaze co napsal dalaman to nekdo udelal i bez tehle funkce:
The algorithm from Bigtree is correct if you add some (int) cast
<?php
function easter_date ($Year) {
/*
G is the Golden Number-1
H is 23-Epact (modulo 30)
I is the number of days from 21 March to the Paschal full moon
J is the weekday for the Paschal full moon (0=Sunday,
1=Monday, etc.)
L is the number of days from 21 March to the Sunday on or before
the Paschal full moon (a number between -6 and 28)
*/
$G = $Year % 19;
$C = (int)($Year / 100);
$H = (int)($C - (int)($C / 4) - (int)((8*$C+13) / 25) + 19*$G + 15) % 30;
$I = (int)$H - (int)($H / 28)*(1 - (int)($H / 28)*(int)(29 / ($H + 1))*((int)(21 - $G) / 11));
$J = ($Year + (int)($Year/4) + $I + 2 - $C + (int)($C/4)) % 7;
$L = $I - $J;
$m = 3 + (int)(($L + 40) / 44);
$d = $L + 28 - 31 * ((int)($m / 4));
$y = $Year;
$E = mktime(0,0,0, $m, $d, $y);
return $E;
}
?>
Přidej příspěvek
Ano, opravdu chci reagovat → zobrazí formulář pro přidání příspěvku
×Vložení zdrojáku
×Vložení obrázku
×Vložení videa
Uživatelé prohlížející si toto vlákno
Moderátoři diskuze