fork(1) download
  1. <?php
  2.  
  3. $variavel='123';
  4.  
  5. $heredoc = <<<CODE
  6. rand@#¨4key"'?></ <\\\\ $variavel \0
  7. CODE;
  8.  
  9. $nowdoc = <<<'CODE'
  10. rand@#¨4key"'?></ <\\\\ $variavel \0
  11. CODE;
  12.  
  13.  
  14. echo $heredoc . PHP_EOL;
  15.  
  16. echo $nowdoc . PHP_EOL;
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
rand@#¨4key"'?></ <\\ 123 
rand@#¨4key"'?></ <\\\\ $variavel \0