Skip to content

Instantly share code, notes, and snippets.

@toshimaru
Created August 27, 2012 06:28
Show Gist options
  • Save toshimaru/3486237 to your computer and use it in GitHub Desktop.
Save toshimaru/3486237 to your computer and use it in GitHub Desktop.
masking string
<?php
/**
* masking string
*
* @param string @secretStr
* @return string
*/
function masking($secretStr) {
return str_repeat('*', strlen($secretStr));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment