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.

24 lines
312 B

<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/6/13
* Time: 10:51
*/
register_shutdown_function('shutdown');
function shutdown()
{
echo '<pre>';
print_r(error_get_last());
echo '</pre>';
}
function dump($data)
{
echo '<pre>';
print_r($data);
echo '</pre>';
}