Skip to content

Instantly share code, notes, and snippets.

@Da-Fecto
Last active January 28, 2016 10:14
Show Gist options
  • Save Da-Fecto/8102145 to your computer and use it in GitHub Desktop.
Save Da-Fecto/8102145 to your computer and use it in GitHub Desktop.
this, this, this & that
$count = count($pagearray);
foreach ($pagearray as $key => $p) {
$div = ($key + 1 === $count) ? ($count === 1 ? '' : ' & ') : ($key === 0 ? '' : ', ');
$out .= $div . "<a href='$p->url' class=''>$p->title</a>";
}
echo $out;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment