Guest User

Untitled

a guest
Dec 11th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. /**
  3. * masking string
  4. *
  5. * @param string @secretStr
  6. * @return string
  7. */
  8. function masking($secretStr) {
  9. return str_repeat('*', strlen($secretStr));
  10. }
Add Comment
Please, Sign In to add comment