Skip to content

Instantly share code, notes, and snippets.

@nobuf
Created July 12, 2011 22:35
Show Gist options
  • Save nobuf/1079154 to your computer and use it in GitHub Desktop.
Save nobuf/1079154 to your computer and use it in GitHub Desktop.
Return bolded string for CLI
function bold($str)
{
return chr(27) . "[1m" . $str . chr(27) . "[0m";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment