fork download
  1. <?php
  2.  
  3. class Request
  4. {
  5. private $data;
  6.  
  7. public function __construct()
  8. {
  9. $this->data = $_REQUEST;
  10. }
  11.  
  12. public function getData(string $name): ?string
  13. {
  14. return ($this->data[$name]) ?? null;
  15. }
  16. }
Runtime error #stdin #stdout #stderr 0s 82560KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Cannot use 'null' as class name as it is reserved in /home/zzxjk0/prog.php on line 12