Response.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. namespace App\Library\HttpRequest;
  3. /**
  4. * Requests
  5. *
  6. * @author he xiang <ihexiang@163.com>
  7. * @version 1.0.0
  8. */
  9. class Response
  10. {
  11. private $errCode = 0;
  12. private $errMsg = '';
  13. private $statusCode = 0;
  14. private $body = '';
  15. private $cookies = [];
  16. private $headers = [];
  17. /**
  18. * 响应类构造方法
  19. *
  20. * @param array $datas 参数为[该类的成员属性名=>值[,..]]
  21. * */
  22. public function __construct(array $datas = [])
  23. {
  24. if ($datas){
  25. foreach ($datas as $key=>$val){
  26. if(isset($this->$key)){
  27. $this->$key = $val;
  28. }
  29. }
  30. }
  31. }
  32. /**
  33. * 获取 err code
  34. *
  35. * @return int
  36. * */
  37. public function getErrCode(){
  38. return intval($this->errCode);
  39. }
  40. /**
  41. * 获取 err msg
  42. *
  43. * @return string
  44. * */
  45. public function getErrMsg(){
  46. return strval($this->errMsg);
  47. }
  48. /**
  49. * 获取 status code
  50. *
  51. * @return int
  52. * */
  53. public function getStatusCode(){
  54. return intval($this->statusCode);
  55. }
  56. /**
  57. * 获取 body
  58. *
  59. * @return string
  60. * */
  61. public function getBody(){
  62. return $this->body;
  63. }
  64. /**
  65. * 获取 cookies
  66. *
  67. * @return array
  68. * */
  69. public function getCookies(){
  70. return $this->cookies;
  71. }
  72. /**
  73. * 获取 headers
  74. *
  75. * @return array
  76. * */
  77. public function getHeaders(){
  78. return $this->headers;
  79. }
  80. }