blob: 2453a50979cfbe3423bb2404995bba9ce0e8e179 (
plain) (
tree)
|
|
<?php
require_once('boot.php');
$str = <<< EOT
error_reporting(E_ERROR | E_WARNING | E_PARSE );
ini_set('display_errors', '1');
ini_set('log_errors','0');
EOT;
$str .= str_replace('<?php', '', file_get_contents($argv[1]));
eval($str);
|