fork download
  1. <?php
  2.  
  3. $file = sys_get_temp_dir() . '/array.php';
  4. $array = array(
  5. "foo" => "bar",
  6. "bar" => "foo",
  7. );
  8. file_put_contents($file, '<?php return ' . var_export($array, true) . ';');
  9.  
  10. $foo = include $file;
  11. print_r($foo);
Success #stdin #stdout 0.02s 23936KB
stdin
Standard input is empty
stdout
Array
(
    [foo] => bar
    [bar] => foo
)