45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Whoops - php errors for cool kids
|
|
* @author Filipe Dobreira <http://github.com/filp>
|
|
*/
|
|
|
|
namespace Whoops\Util;
|
|
|
|
class Misc
|
|
{
|
|
/**
|
|
* Can we at this point in time send HTTP headers?
|
|
*
|
|
* Currently this checks if we are even serving an HTTP request,
|
|
* as opposed to running from a command line.
|
|
*
|
|
* If we are serving an HTTP request, we check if it's not too late.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function canSendHeaders()
|
|
{
|
|
return isset($_SERVER["REQUEST_URI"]) && !headers_sent();
|
|
}
|
|
|
|
/**
|
|
* Translate ErrorException code into the represented constant.
|
|
*
|
|
* @param int $error_code
|
|
* @return string
|
|
*/
|
|
public static function translateErrorCode($error_code)
|
|
{
|
|
$constants = get_defined_constants(true);
|
|
if (array_key_exists('Core' , $constants)) {
|
|
foreach ($constants['Core'] as $constant => $value) {
|
|
if (substr($constant, 0, 2) == 'E_' && $value == $error_code) {
|
|
return $constant;
|
|
}
|
|
}
|
|
}
|
|
return "E_UNKNOWN";
|
|
}
|
|
}
|