fork(1) download
  1. <?php
  2.  
  3. $username = 'test';
  4. $email = 'test@test.com';
  5. $str = 'This is a test for $username. I am sending mail to some person $email.';
  6.  
  7. echo $str. "\n";
  8. // This is a test for $username. I am sending mail to some person $email.
  9. eval("\$str = \"$str\";");
  10. echo $str. "\n";
  11. // This is a test for test. I am sending mail to some person test@test.com.
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
This is a test for $username. I am sending mail to some person $email.
This is a test for test. I am sending mail to some person test@test.com.