Skip to content

Instantly share code, notes, and snippets.

@qzminski
Last active January 29, 2016 07:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qzminski/dc43648df0ff4226cd70 to your computer and use it in GitHub Desktop.
Save qzminski/dc43648df0ff4226cd70 to your computer and use it in GitHub Desktop.
<?php
$pagination = '';
foreach ($_GET as $k => $v) {
if (substr($k, 0, 4) === 'page') {
$pagination = $v;
break;
}
}
?>
<html>
<head>
...
<title><?= $this->title ?><?= $pagination ? sprintf(' - Strona %s', $pagination) : '' ?></title>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment