fork(1) download
  1. <?php
  2.  
  3. // Staring straight up into the sky ... oh my my
  4.  
  5.  
  6. /* Возвращает соответствующую числу форму слова: 1 рубль, 2 рубля, 5 рублей */
  7. function inclineWord($number, $word1, $word2, $word5) {
  8. $last2Digits = $number % 100;
  9. $lastDigit = $number % 10;
  10.  
  11. if ($last2Digits >= 10 && $last2Digits <= 19 || $lastDigit == 0 ) {
  12. return $word5;
  13. } elseif ($lastDigit >= 2 && $lastDigit <= 4) {
  14. return $word2;
  15. } elseif ($lastDigit == 1) {
  16. return $word1;
  17. } else {
  18. return $word5;
  19. }
  20.  
  21. return $incline;
  22. }
  23. /*
  24.   Преобразует числа от 0 до 999 в текст. Параметр $isFemale равен нулю,
  25.   если мы считаем число для мужского рода (один рубль),
  26.   и 1 — для женского (одна тысяча)
  27. */
  28. function smallNumberToText($number, $isFemale) {
  29.  
  30. $spelling = array(
  31. 0 => 'ноль', 10 => 'десять', 100 => 'сто',
  32. 1 => 'один', 11 => 'одиннадцать', 20 => 'двадцать', 200 => 'двести',
  33. 2 => 'два', 12 => 'двенадцать', 30 => 'тридцать', 300 => 'триста',
  34. 3 => 'три', 13 => 'тринадцать', 40 => 'сорок', 400 => 'четыреста',
  35. 4 => 'четыре', 14 => 'четырнадцать', 50 => 'пятьдесят', 500 => 'пятьсот',
  36. 5 => 'пять', 15 => 'пятнадцать', 60 => 'шестьдесят', 600 => 'шестьсот',
  37. 6 => 'шесть', 16 => 'шестнадцать', 70 => 'семьдесят', 700 => 'семьсот',
  38. 7 => 'семь', 17 => 'семнадцать', 80 => 'восемьдесят', 800 => 'восемьсот',
  39. 8 => 'восемь', 18 => 'восемнадцать', 90 => 'девяносто', 900 => 'девятьсот',
  40. 9 => 'девять', 19 => 'девятнадцать'
  41. );
  42.  
  43. $femaleSpelling = array(
  44. 1 => 'одна', 2 => 'две'
  45. );
  46.  
  47. $hundreds = $number % 1000;
  48. $tens = $number % 100;
  49. $digits = $number % 10;
  50.  
  51. $hundredsRound = floor ($hundreds / 100)*100;
  52. $tensRound = floor ($tens / 10)*10;
  53.  
  54. $spelling['null'] = "";
  55.  
  56. if ($isFemale == 1) {
  57. $spelling[1] = 'одна';
  58. $spelling[2] = 'две';
  59. }
  60.  
  61. if ($digits == 0 && ($tensRound > 10 || $hundredsRound > 100)) {
  62. $digits = 'null';
  63. }
  64.  
  65. if ($hundredsRound == 0) {
  66. $hundredsRound = 'null';
  67. }
  68.  
  69. if ($tensRound < 10) {
  70. $tensRound = 'null';
  71. }
  72.  
  73. if ($tens >= 10 && $tens <= 19) {
  74. $digits = 'null';
  75. $tensRound = $tens;
  76. }
  77.  
  78. $numbersResult = $spelling[$hundredsRound].' '.$spelling[$tensRound].' '.$spelling[$digits];
  79.  
  80. return $numbersResult;
  81. }
  82.  
  83. function numberToText($number) {
  84. $millions = floor ($number / 1000000);
  85. $numberOfMillions = $millions % 1000;
  86.  
  87. $thousands = floor ($number / 1000);
  88. $numberOfThousands = $thousands % 1000;
  89.  
  90. $numberOfHundreds = $number % 1000;
  91.  
  92. $wordsMillions = smallNumberToText($numberOfMillions, 0);
  93. $wordsThousands = smallNumberToText($numberOfThousands, 1);
  94. $wordsHundreds = smallNumberToText($numberOfHundreds, 0);
  95.  
  96. $inclineWordsMillions = inclineWord($numberOfMillions, 'миллион', 'миллиона', 'миллионов');
  97. $inclineWordsThousands = inclineWord($numberOfThousands, 'тысяча', 'тысячи', 'тысяч');
  98. $inclineWordsHundreds = inclineWord($numberOfHundreds, 'рубль', 'рубля', 'рублей');
  99.  
  100. if ($numberOfThousands == 0) {
  101. $wordsThousands = " ";
  102. $inclineWordsThousands = " ";
  103. }
  104.  
  105. if ($numberOfHundreds == 0 && $number > 0) {
  106. $wordsHundreds = " ";
  107. }
  108.  
  109. if ($number < 1000) {
  110. $totalResult = $wordsHundreds.' '.$inclineWordsHundreds;
  111. } elseif ($number < 1000000) {
  112. $totalResult = $wordsThousands.' '.$inclineWordsThousands.' '.$wordsHundreds.' '.$inclineWordsHundreds;
  113. } else {
  114. $totalResult = $wordsMillions.' '.$inclineWordsMillions.' '.$wordsThousands.' '.$inclineWordsThousands.' '.$wordsHundreds.' '.$inclineWordsHundreds;
  115. }
  116.  
  117. $totalResult = preg_replace('/\s{2,}/', ' ', $totalResult);
  118.  
  119. return $totalResult;
  120. }
  121.  
  122. /* Вызовем функцию несколько раз */
  123. $amount1 = mt_rand(1,99999999);
  124. $text1 = numberToText($amount1);
  125.  
  126. echo "На вашем счету {$text1} ($amount1)\n";
  127.  
  128. $amount2 = mt_rand(1,99999999);
  129. $text2 = numberToText($amount2);
  130.  
  131. echo "На вашем счету {$text2} ($amount2)\n";
  132.  
  133. $amount3 = mt_rand(1,99999999);
  134. $text3 = numberToText($amount3);
  135.  
  136. echo "На вашем счету {$text3} ($amount3)\n";
  137.  
  138. $amount4 = mt_rand(1,99999999);
  139. $text4 = numberToText($amount4);
  140.  
  141. echo "На вашем счету {$text4} ($amount4)\n";
Success #stdin #stdout 0.02s 24192KB
stdin
Standard input is empty
stdout
На вашем счету  семьдесят восемь миллионов восемьсот семьдесят одна тысяча сто семьдесят пять рублей (78871175)
На вашем счету  сорок семь миллионов девятьсот восемьдесят семь тысяч пятьсот шестьдесят семь рублей (47987567)
На вашем счету  двадцать семь миллионов шестьсот шестьдесят две тысячи девятьсот двенадцать рублей (27662912)
На вашем счету  шестьдесят один миллион четыреста сорок семь тысяч двести двадцать четыре рубля (61447224)