Last active
August 29, 2015 14:24
-
-
Save RazaChohan/60d3f8ed4c6ed02ba3b4 to your computer and use it in GitHub Desktop.
php docblock
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Quotes arg2 into arg1 | |
* | |
* This method quotes the integer carried by arg2 into the string | |
* carried by arg1. This method uses the PHP function sprintf | |
* and returns the resulting string. FALSE if the integer was 0. | |
* | |
* @param string $arg1 the string to quote | |
* @param int $arg2 an integer containing some value to quote. | |
* Indent to the description's starting point | |
* if it exceeds single line. | |
* | |
* @return string the string returning some value. FALSE if the | |
* operation was unsuccessful. | |
* | |
* @throws Exception the std exception containing message that the | |
* input arguments are not valid. Thrown if the | |
* arg1 is empty or null or not a string. | |
* | |
* @access public | |
* @static | |
* @since Method available since Release | |
* @deprecated Method deprecated in Release | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment