Guest User

Untitled

a guest
Oct 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. /**
  3. * This function takes a string containing a decimal number and converts it into a string
  4. * If the string isn't a valid number, 0 is returned
  5. * @param string $numberString the string to convert
  6. * @retunr int the converted number, 0 on failure
  7. */
  8. function stringToInt($numberString)
  9. {
  10. //the actual implementation...
  11. }
Add Comment
Please, Sign In to add comment