Skip to content

Instantly share code, notes, and snippets.

<?php
// По стандарту так
echo strtr($summaryText, array(
'{start}' => $start,
'{end}' => $end,
'{count}' => $total,
'{page}' => $pagination->currentPage + 1,
'{pages}' => $pagination->pageCount,
));