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.
20 lines
405 B
20 lines
405 B
2 months ago
|
<?php
|
||
|
namespace LaneWeChat\Core;
|
||
|
|
||
|
class Msg {
|
||
|
|
||
|
@param int
|
||
|
@param string
|
||
|
@return Ambigous
|
||
|
|
||
|
public static function returnErrMsg($code, $errorMsg = null) {
|
||
|
$returnMsg = array('error_code' => $code);
|
||
|
if (!empty($errorMsg)) {
|
||
|
$returnMsg['custom_msg'] = $errorMsg;
|
||
|
}
|
||
|
$returnMsg['custom_msg'] = '出错啦!'.$returnMsg['custom_msg'];
|
||
|
exit($returnMsg['custom_msg']);
|
||
|
}
|
||
|
}
|
||
|
?>
|