Страница 1 из 1

Где быстро выдадут кредит (город Нижний Тагил) ?

Добавлено: 30 мар 2013, 10:59
Aambumnaginc
Пожалуйста, помогите рекомендацией !
Срочно нужны средства для покупки машины.
Где и как оформить займ в интернете ?

Для связи
e-mail:Aperpomma@gmail.com
icq: 115561179

Re: Где быстро выдадут кредит (город Нижний Тагил) ?

Добавлено: 31 мар 2013, 03:25
LML
Я не думаю, что тебе тут кто-то чем-то сможет помочь. У нас не финансовый форум.

Re: Где быстро выдадут кредит (город Нижний Тагил) ?

Добавлено: 01 июн 2018, 14:46
LML
Лучший способ генерации уникального случайного числа -

Код: Выделить всё

<?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

Re: Где быстро выдадут кредит (город Нижний Тагил) ?

Добавлено: 04 янв 2019, 16:00
LML

Re: Где быстро выдадут кредит (город Нижний Тагил) ?

Добавлено: 23 фев 2019, 15:16
LML
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.

Код: Выделить всё

<?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;
    }

Re: Наши фотографии

Добавлено: 18 авг 2020, 11:22
diamond67
Уважаемые подскажите какой фотоаппарат взять для любительской съемки советуют Canon EOS 2000D а я боюсь ошибиться, может есть кто продвинутый в этих делах ?