Request.php 349 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: chendeben
  5. * Date: 2019-01-22
  6. * Time: 13:38
  7. */
  8. namespace Heanup;
  9. class Request extends \Thread
  10. {
  11. public $url;
  12. public $response;
  13. public function __construct($url) {
  14. $this->url = $url;
  15. }
  16. public function run() {
  17. $this->response = file_get_contents($this->url);
  18. }
  19. }