Skip to content

Instantly share code, notes, and snippets.

@whisher
Created June 19, 2014 21:03
Show Gist options
  • Select an option

  • Save whisher/48a3bae91f939b22b176 to your computer and use it in GitHub Desktop.

Select an option

Save whisher/48a3bae91f939b22b176 to your computer and use it in GitHub Desktop.
public function buildSlug($slug)
{
$row = $this->fetchBySlug($slug);
if(null===$row){
return $slug;
}
$i = 1;
while($this->fetchBySlug($slug . '-' . $i)) {
$i++;
}
return $slug . '-' . $i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment