Пожалуйста, помогите рекомендацией !
Срочно нужны средства для покупки машины.
Где и как оформить займ в интернете ?
Для связи
e-mail:Aperpomma@gmail.com
icq: 115561179
Где быстро выдадут кредит (город Нижний Тагил) ?
-
- Гость
- Сообщения: 1
- Зарегистрирован: 26 мар 2013, 14:13
-
- Администратор
- Сообщения: 230
- Зарегистрирован: 01 фев 2012, 02:34
- Имя: Геннадий
- Пол: Мужской
Re: Где быстро выдадут кредит (город Нижний Тагил) ?
Я не думаю, что тебе тут кто-то чем-то сможет помочь. У нас не финансовый форум.
-
- Администратор
- Сообщения: 230
- Зарегистрирован: 01 фев 2012, 02:34
- Имя: Геннадий
- Пол: Мужской
Re: Где быстро выдадут кредит (город Нижний Тагил) ?
Лучший способ генерации уникального случайного числа -
https://secure.php.net/manual/ru/ref.array.php
https://secure.php.net/manual/ru/functi ... -shift.php
https://secure.php.net/manual/ru/functi ... exists.php
https://secure.php.net/manual/ru/functi ... y-diff.php
Код: Выделить всё
<?php
echo md5(uniqid(mt_rand(), true).microtime(true));
?>
https://secure.php.net/manual/ru/ref.array.php
https://secure.php.net/manual/ru/functi ... -shift.php
https://secure.php.net/manual/ru/functi ... exists.php
https://secure.php.net/manual/ru/functi ... y-diff.php
-
- Администратор
- Сообщения: 230
- Зарегистрирован: 01 фев 2012, 02:34
- Имя: Геннадий
- Пол: Мужской
-
- Администратор
- Сообщения: 230
- Зарегистрирован: 01 фев 2012, 02:34
- Имя: Геннадий
- Пол: Мужской
Re: Где быстро выдадут кредит (город Нижний Тагил) ?
http://php.net/manual/ru/function.date.php
The following function will return the date (on the Gregorian calendar) for Orthodox Easter (Pascha). Note that incorrect results will be returned for years less than 1601 or greater than 2399. This is because the Julian calendar (from which the Easter date is calculated) deviates from the Gregorian by one day for each century-year that is NOT a leap-year, i.e. the century is divisible by 4 but not by 10. (In the old Julian reckoning, EVERY 4th year was a leap-year.)
This algorithm was first proposed by the mathematician/physicist Gauss. Its complexity derives from the fact that the calculation is based on a combination of solar and lunar calendars.
http://php.net/manual/ru/datetime.diff.php
http://www.cyberforum.ru/cpp-beginners/ ... 38712.html
The following function will return the date (on the Gregorian calendar) for Orthodox Easter (Pascha). Note that incorrect results will be returned for years less than 1601 or greater than 2399. This is because the Julian calendar (from which the Easter date is calculated) deviates from the Gregorian by one day for each century-year that is NOT a leap-year, i.e. the century is divisible by 4 but not by 10. (In the old Julian reckoning, EVERY 4th year was a leap-year.)
This algorithm was first proposed by the mathematician/physicist Gauss. Its complexity derives from the fact that the calculation is based on a combination of solar and lunar calendars.
Код: Выделить всё
<?php
function getOrthodoxEaster($date){
/*
Takes any Gregorian date and returns the Gregorian
date of Orthodox Easter for that year.
*/
$year = date("Y", $date);
$r1 = $year % 19;
$r2 = $year % 4;
$r3 = $year % 7;
$ra = 19 * $r1 + 16;
$r4 = $ra % 30;
$rb = 2 * $r2 + 4 * $r3 + 6 * $r4;
$r5 = $rb % 7;
$rc = $r4 + $r5;
//Orthodox Easter for this year will fall $rc days after April 3
return strtotime("3 April $year + $rc days");
}
?>
http://php.net/manual/ru/datetime.diff.php
Код: Выделить всё
<?php
$date1 = new DateTime('2011-04-01');
$date2 = new DateTime("now");
$interval = $date1->diff($date2);
$years = $interval->format('%y');
$months = $interval->format('%m');
$days = $interval->format('%d');
if($years!=0){
$ago = $years.' year(s) ago';
}else{
$ago = ($months == 0 ? $days.' day(s) ago' : $months.' month(s) ago');
}
echo $ago;
?>
http://www.cyberforum.ru/cpp-beginners/ ... 38712.html
Код: Выделить всё
if (minYear%4) minYear = (minYear/4)*4 + 4;
for(int i = minYear; i < maxYear; i+=4)
{
if(i % 400 == 0 && i % 100 != 0)
++countYear;
}
-
- Гость
- Сообщения: 2
- Зарегистрирован: 04 июл 2020, 20:19
- Имя: Максим
- Пол: Мужской
Re: Наши фотографии
Уважаемые подскажите какой фотоаппарат взять для любительской съемки советуют Canon EOS 2000D а я боюсь ошибиться, может есть кто продвинутый в этих делах ?