Skip to content

Instantly share code, notes, and snippets.

@MartinTale
Created December 17, 2019 16:04
Show Gist options
  • Save MartinTale/b8a6376d7f7fd0012355d253a55f3eae to your computer and use it in GitHub Desktop.
Save MartinTale/b8a6376d7f7fd0012355d253a55f3eae to your computer and use it in GitHub Desktop.
Converts slug to human readable string..
<?php
if (!function_exists('slugToHumanReadable')) {
function slugToHumanReadable($slug)
{
return ucwords(str_replace('-', ' ', $slug));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment