Request.php 284 B

12345678910111213141516171819
  1. <?php
  2. namespace Core;
  3. /**
  4. * request请求对象
  5. * Class Request
  6. * @package Core
  7. */
  8. class Request
  9. {
  10. protected $input = array();
  11. public function input(){
  12. return $this->input;
  13. }
  14. public function setInput($key,$val){
  15. $this->input[$key] = $val;
  16. }
  17. }