View http_response_codes.php
<?php | |
$responses = array( | |
100 => 'Continue', | |
101 => 'Switching Protocols', | |
200 => 'OK', | |
201 => 'Created', | |
202 => 'Accepted', | |
203 => 'Non-Authoritative Information', | |
204 => 'No Content', |
View number_suffix.php
<?php | |
/** | |
* Function which return the number with appropriate suffix. | |
* | |
* @param : $num | |
* The integer number for which suffix is to be added. | |
* | |
* @return : suffixed number | |
*/ |