fork download
  1. <?php
  2. // mb_internal_encoding("utf-8");
  3. setlocale(LC_ALL, "russian");
  4. $year = strftime("%Y");
  5. $mounth = strftime("%B");
  6. $day = strftime("%d");
  7.  
  8. echo "Сегодня $day число, $mounth месяц, $year год";
  9.  
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
Сегодня 14 число, April месяц, 2015 год