本文整理汇总了PHP中MDB::errorMessage方法的典型用法代码示例。如果您正苦于以下问题:PHP MDB::errorMessage方法的具体用法?PHP MDB::errorMessage怎么用?PHP MDB::errorMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MDB
的用法示例。
在下文中一共展示了MDB::errorMessage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: errorMessage
function errorMessage($value)
{
return MDB::errorMessage($value);
}
示例2: errorMessage
/**
* Map a MDB error code to a textual message. This is actually
* just a wrapper for MDB::errorMessage().
*
* @param integer $dbcode the MDB error code
* @return string the corresponding error message, of FALSE
* if the error code was unknown
* @access public
*/
function errorMessage($dbcode)
{
return MDB::errorMessage($this->errorcode_map[$dbcode]);
}
示例3: MDB_Error
/**
* MDB_Error constructor.
*
* @param mixed $code MDB error code, or string with error message.
* @param integer $mode what 'error mode' to operate in
* @param integer $level what error level to use for
* $mode & PEAR_ERROR_TRIGGER
* @param smixed $debuginfo additional debug info, such as the last query
*/
function MDB_Error($code = MDB_ERROR, $mode = PEAR_ERROR_RETURN, $level = E_USER_NOTICE, $debuginfo = NULL)
{
if (is_int($code)) {
$this->PEAR_Error('MDB Error: ' . MDB::errorMessage($code), $code, $mode, $level, $debuginfo);
} else {
$this->PEAR_Error("MDB Error: {$code}", MDB_ERROR, $mode, $level, $debuginfo);
}
}