streams/util/typohelper.php

15 lines
271 B
PHP
Raw Normal View History

<?php
2021-12-03 03:01:39 +00:00
require_once('boot.php');
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;
2021-12-03 03:01:39 +00:00
$str .= str_replace('<?php', '', file_get_contents($argv[1]));
eval($str);