fork download
  1. <?php
  2.  
  3. function test($file) {
  4. var_dump(@eval('if (false){'.$file.'}'));
  5. }
  6.  
  7. test('$x = 0;');
  8.  
  9. test('eval(\'$x=0;\');');
  10.  
  11. test('foobar');
Runtime error #stdin #stdout 0s 20592KB
stdin
Standard input is empty
stdout
NULL
NULL
bool(false)