Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. /**
  2. * Quotes arg2 into arg1
  3. *
  4. * This method quotes the integer carried by arg2 into the string
  5. * carried by arg1. This method uses the PHP function sprintf
  6. * and returns the resulting string. FALSE if the integer was 0.
  7. *
  8. * @param string $arg1 the string to quote
  9. * @param int $arg2 an integer containing some value to quote.
  10. * Indent to the description's starting point
  11. * if it exceeds single line.
  12. *
  13. * @return string the string returning some value. FALSE if the
  14. * operation was unsuccessful.
  15. *
  16. * @throws Exception the std exception containing message that the
  17. * input arguments are not valid. Thrown if the
  18. * arg1 is empty or null or not a string.
  19. *
  20. * @access public
  21. * @static
  22. * @since Method available since Release
  23. * @deprecated Method deprecated in Release
  24. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement