/var/www/coeditor.org/users/justbit-netherlands.com
Edit: /var/www/coeditor.org/users/justbit-netherlands.com/index.php (1585B)
format('n') - 1;
$w = (int)$now->format('w');
$vars = [
'{{_year}}' => $now->format('Y'),
'{{_month}}' => $now->format('m'),
'{{_day}}' => $now->format('d'),
'{{_month_name}}' => $months_ru[$n],
'{{_month_name_en}}' => $months_en[$n],
'{{_month_short}}' => $months_short_ru[$n],
'{{_month_short_en}}' => $months_short_en[$n],
'{{_day_name}}' => $days_ru[$w],
'{{_day_name_en}}' => $days_en[$w],
'{{_date}}' => $now->format('d.m.Y'),
'{{_date_iso}}' => $now->format('Y-m-d'),
'{{_date_full}}' => $now->format('j') . ' ' . $months_ru[$n] . ' ' . $now->format('Y'),
];
$html = file_get_contents(__DIR__ . '/index.html');
echo str_replace(array_keys($vars), array_values($vars), $html);