コード例 #1
0
ファイル: HttpStatusCode.php プロジェクト: otak/maestro
 /**
  * Returns HTTP code understood by http standard instead of a const
  * @param $code
  * @return string
  */
 public static function Text($code)
 {
     return trim(ucwords(str_replace('_', ' ', strtolower(parent::Text($code)))));
 }