You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
369 B
27 lines
369 B
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2018/6/13
|
|
* Time: 10:51
|
|
*/
|
|
|
|
register_shutdown_function('shutdown');
|
|
|
|
function shutdown()
|
|
{
|
|
$error = error_get_last();
|
|
if ($error) {
|
|
echo '<pre>';
|
|
print_r($error);
|
|
echo '</pre>';
|
|
}
|
|
}
|
|
|
|
function dump($data)
|
|
{
|
|
echo '<pre>';
|
|
print_r($data);
|
|
echo '</pre>';
|
|
}
|