streams/util/typohelper.php

15 lines
260 B
PHP
Raw Normal View History

<?php
2016-04-01 01:53:05 +00:00
require_once('boot.php');
2016-04-01 08:04:37 +00:00
App::init();
2016-04-01 01:53:05 +00:00
$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);