X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fcode-functions.php;h=53fc0c3d2840439db2f88ff36efb116bd9dbe153;hb=72f7e9ed8975d7fb4f2ebeb48dd43c896289a57b;hp=bb915a55a6d53c7ad229f03da229ba301ef34e57;hpb=c8d76610eb94093d4eed4fcd8a6cb72e74c8f6d8;p=mailer.git diff --git a/inc/code-functions.php b/inc/code-functions.php index bb915a55a6..53fc0c3d28 100644 --- a/inc/code-functions.php +++ b/inc/code-functions.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -50,7 +50,7 @@ function getCode ($key) { // Is the key set? if (!isCodeSet($key)) { // Abort here - debug_report_bug(__FUNCTION__, __LINE__, sprintf("%s[%s:] Code %s is not set.", + reportBug(__FUNCTION__, __LINE__, sprintf('%s[%s:] Code %s is not set.', __FUNCTION__, __LINE__, $key @@ -61,11 +61,20 @@ function getCode ($key) { return $GLOBALS['status_codes'][$key]; } -// Checks wether a specified status code is set +// Checks whether a specified status code is set function isCodeSet ($key) { // Simply use isset() return (isset($GLOBALS['status_codes'][$key])); } +// Get hex-decimal value from given error code +function getHexErrorCode ($errorCode) { + // Convert it + $hex = str_pad(dechex($errorCode), 3, '0', STR_PAD_LEFT); + + // Return it + return $hex; +} + // [EOF] ?>