Skip to content

Instantly share code, notes, and snippets.

@gvgvgvijayan
Last active January 3, 2021 10:58
Show Gist options
  • Save gvgvgvijayan/7563dc984bb8dd09bcbdb56f0826c5b0 to your computer and use it in GitHub Desktop.
Save gvgvgvijayan/7563dc984bb8dd09bcbdb56f0826c5b0 to your computer and use it in GitHub Desktop.
<?php
...
/**
* Convert slug string to human readable.
*
* @param string $title String to transform human readable.
*
* @return string Human readable of the input string.
*/
private function human_readable( $title ) {
return ucwords( str_replace( '_', ' ', $title ) );
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment