common.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  1. <?php
  2. // 公共助手函数
  3. use app\lib\exception\BaseException;
  4. use Symfony\Component\VarExporter\VarExporter;
  5. use think\Db;
  6. if (!function_exists('__')) {
  7. /**
  8. * 获取语言变量值
  9. * @param string $name 语言变量名
  10. * @param array $vars 动态变量值
  11. * @param string $lang 语言
  12. * @return mixed
  13. */
  14. function __($name, $vars = [], $lang = '')
  15. {
  16. if (is_numeric($name) || !$name) {
  17. return $name;
  18. }
  19. if (!is_array($vars)) {
  20. $vars = func_get_args();
  21. array_shift($vars);
  22. $lang = '';
  23. }
  24. return \think\Lang::get($name, $vars, $lang);
  25. }
  26. }
  27. if (!function_exists('format_bytes')) {
  28. /**
  29. * 将字节转换为可读文本
  30. * @param int $size 大小
  31. * @param string $delimiter 分隔符
  32. * @param int $precision 小数位数
  33. * @return string
  34. */
  35. function format_bytes($size, $delimiter = '', $precision = 2)
  36. {
  37. $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB');
  38. for ($i = 0; $size >= 1024 && $i < 6; $i++) {
  39. $size /= 1024;
  40. }
  41. return round($size, $precision) . $delimiter . $units[$i];
  42. }
  43. }
  44. if (!function_exists('datetime')) {
  45. /**
  46. * 将时间戳转换为日期时间
  47. * @param int $time 时间戳
  48. * @param string $format 日期时间格式
  49. * @return string
  50. */
  51. function datetime($time, $format = 'Y-m-d H:i:s')
  52. {
  53. $time = is_numeric($time) ? $time : strtotime($time);
  54. return date($format, $time);
  55. }
  56. }
  57. if (!function_exists('human_date')) {
  58. /**
  59. * 获取语义化时间
  60. * @param int $time 时间
  61. * @param int $local 本地时间
  62. * @return string
  63. */
  64. function human_date($time, $local = null)
  65. {
  66. return \fast\Date::human($time, $local);
  67. }
  68. }
  69. if (!function_exists('cdnurl')) {
  70. /**
  71. * 获取上传资源的CDN的地址
  72. * @param string $url 资源相对地址
  73. * @param boolean $domain 是否显示域名 或者直接传入域名
  74. * @return string
  75. */
  76. function cdnurl($url, $domain = false)
  77. {
  78. $regex = "/^((?:[a-z]+:)?\/\/|data:image\/)(.*)/i";
  79. static $cdnurl;
  80. if(is_null($cdnurl)) {
  81. $cdnurl = \app\common\model\Config::getValue('oss_url',false);
  82. }
  83. $url = preg_match($regex, $url) || ($cdnurl && stripos($url, $cdnurl) === 0) ? $url : $cdnurl . $url;
  84. if ($domain && !preg_match($regex, $url)) {
  85. $domain = is_bool($domain) ? request()->domain() : $domain;
  86. $url = $domain . $url;
  87. }
  88. return $url;
  89. }
  90. }
  91. if (!function_exists('is_really_writable')) {
  92. /**
  93. * 判断文件或文件夹是否可写
  94. * @param string $file 文件或目录
  95. * @return bool
  96. */
  97. function is_really_writable($file)
  98. {
  99. if (DIRECTORY_SEPARATOR === '/') {
  100. return is_writable($file);
  101. }
  102. if (is_dir($file)) {
  103. $file = rtrim($file, '/') . '/' . md5(mt_rand());
  104. if (($fp = @fopen($file, 'ab')) === false) {
  105. return false;
  106. }
  107. fclose($fp);
  108. @chmod($file, 0777);
  109. @unlink($file);
  110. return true;
  111. } elseif (!is_file($file) or ($fp = @fopen($file, 'ab')) === false) {
  112. return false;
  113. }
  114. fclose($fp);
  115. return true;
  116. }
  117. }
  118. if (!function_exists('rmdirs')) {
  119. /**
  120. * 删除文件夹
  121. * @param string $dirname 目录
  122. * @param bool $withself 是否删除自身
  123. * @return boolean
  124. */
  125. function rmdirs($dirname, $withself = true)
  126. {
  127. if (!is_dir($dirname)) {
  128. return false;
  129. }
  130. $files = new RecursiveIteratorIterator(
  131. new RecursiveDirectoryIterator($dirname, RecursiveDirectoryIterator::SKIP_DOTS),
  132. RecursiveIteratorIterator::CHILD_FIRST
  133. );
  134. foreach ($files as $fileinfo) {
  135. $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
  136. $todo($fileinfo->getRealPath());
  137. }
  138. if ($withself) {
  139. @rmdir($dirname);
  140. }
  141. return true;
  142. }
  143. }
  144. if (!function_exists('copydirs')) {
  145. /**
  146. * 复制文件夹
  147. * @param string $source 源文件夹
  148. * @param string $dest 目标文件夹
  149. */
  150. function copydirs($source, $dest)
  151. {
  152. if (!is_dir($dest)) {
  153. mkdir($dest, 0755, true);
  154. }
  155. foreach (
  156. $iterator = new RecursiveIteratorIterator(
  157. new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),
  158. RecursiveIteratorIterator::SELF_FIRST
  159. ) as $item
  160. ) {
  161. if ($item->isDir()) {
  162. $sontDir = $dest . DS . $iterator->getSubPathName();
  163. if (!is_dir($sontDir)) {
  164. mkdir($sontDir, 0755, true);
  165. }
  166. } else {
  167. copy($item, $dest . DS . $iterator->getSubPathName());
  168. }
  169. }
  170. }
  171. }
  172. if (!function_exists('mb_ucfirst')) {
  173. function mb_ucfirst($string)
  174. {
  175. return mb_strtoupper(mb_substr($string, 0, 1)) . mb_strtolower(mb_substr($string, 1));
  176. }
  177. }
  178. if (!function_exists('addtion')) {
  179. /**
  180. * 附加关联字段数据
  181. * @param array $items 数据列表
  182. * @param mixed $fields 渲染的来源字段
  183. * @return array
  184. */
  185. function addtion($items, $fields)
  186. {
  187. if (!$items || !$fields) {
  188. return $items;
  189. }
  190. $fieldsArr = [];
  191. if (!is_array($fields)) {
  192. $arr = explode(',', $fields);
  193. foreach ($arr as $k => $v) {
  194. $fieldsArr[$v] = ['field' => $v];
  195. }
  196. } else {
  197. foreach ($fields as $k => $v) {
  198. if (is_array($v)) {
  199. $v['field'] = isset($v['field']) ? $v['field'] : $k;
  200. } else {
  201. $v = ['field' => $v];
  202. }
  203. $fieldsArr[$v['field']] = $v;
  204. }
  205. }
  206. foreach ($fieldsArr as $k => &$v) {
  207. $v = is_array($v) ? $v : ['field' => $v];
  208. $v['display'] = isset($v['display']) ? $v['display'] : str_replace(['_ids', '_id'], ['_names', '_name'], $v['field']);
  209. $v['primary'] = isset($v['primary']) ? $v['primary'] : '';
  210. $v['column'] = isset($v['column']) ? $v['column'] : 'name';
  211. $v['model'] = isset($v['model']) ? $v['model'] : '';
  212. $v['table'] = isset($v['table']) ? $v['table'] : '';
  213. $v['name'] = isset($v['name']) ? $v['name'] : str_replace(['_ids', '_id'], '', $v['field']);
  214. }
  215. unset($v);
  216. $ids = [];
  217. $fields = array_keys($fieldsArr);
  218. foreach ($items as $k => $v) {
  219. foreach ($fields as $m => $n) {
  220. if (isset($v[$n])) {
  221. $ids[$n] = array_merge(isset($ids[$n]) && is_array($ids[$n]) ? $ids[$n] : [], explode(',', $v[$n]));
  222. }
  223. }
  224. }
  225. $result = [];
  226. foreach ($fieldsArr as $k => $v) {
  227. if ($v['model']) {
  228. $model = new $v['model'];
  229. } else {
  230. $model = $v['name'] ? \think\Db::name($v['name']) : \think\Db::table($v['table']);
  231. }
  232. $primary = $v['primary'] ? $v['primary'] : $model->getPk();
  233. $result[$v['field']] = isset($ids[$v['field']]) ? $model->where($primary, 'in', $ids[$v['field']])->column("{$primary},{$v['column']}") : [];
  234. }
  235. foreach ($items as $k => &$v) {
  236. foreach ($fields as $m => $n) {
  237. if (isset($v[$n])) {
  238. $curr = array_flip(explode(',', $v[$n]));
  239. $v[$fieldsArr[$n]['display']] = implode(',', array_intersect_key($result[$n], $curr));
  240. }
  241. }
  242. }
  243. return $items;
  244. }
  245. }
  246. if (!function_exists('var_export_short')) {
  247. /**
  248. * 使用短标签打印或返回数组结构
  249. * @param mixed $data
  250. * @param boolean $return 是否返回数据
  251. * @return string
  252. */
  253. function var_export_short($data, $return = true)
  254. {
  255. return var_export($data, $return);
  256. $replaced = [];
  257. $count = 0;
  258. //判断是否是对象
  259. if (is_resource($data) || is_object($data)) {
  260. return var_export($data, $return);
  261. }
  262. //判断是否有特殊的键名
  263. $specialKey = false;
  264. array_walk_recursive($data, function (&$value, &$key) use (&$specialKey) {
  265. if (is_string($key) && (stripos($key, "\n") !== false || stripos($key, "array (") !== false)) {
  266. $specialKey = true;
  267. }
  268. });
  269. if ($specialKey) {
  270. return var_export($data, $return);
  271. }
  272. array_walk_recursive($data, function (&$value, &$key) use (&$replaced, &$count, &$stringcheck) {
  273. if (is_object($value) || is_resource($value)) {
  274. $replaced[$count] = var_export($value, true);
  275. $value = "##<{$count}>##";
  276. } else {
  277. if (is_string($value) && (stripos($value, "\n") !== false || stripos($value, "array (") !== false)) {
  278. $index = array_search($value, $replaced);
  279. if ($index === false) {
  280. $replaced[$count] = var_export($value, true);
  281. $value = "##<{$count}>##";
  282. } else {
  283. $value = "##<{$index}>##";
  284. }
  285. }
  286. }
  287. $count++;
  288. });
  289. $dump = var_export($data, true);
  290. $dump = preg_replace('#(?:\A|\n)([ ]*)array \(#i', '[', $dump); // Starts
  291. $dump = preg_replace('#\n([ ]*)\),#', "\n$1],", $dump); // Ends
  292. $dump = preg_replace('#=> \[\n\s+\],\n#', "=> [],\n", $dump); // Empties
  293. $dump = preg_replace('#\)$#', "]", $dump); //End
  294. if ($replaced) {
  295. $dump = preg_replace_callback("/'##<(\d+)>##'/", function ($matches) use ($replaced) {
  296. return isset($replaced[$matches[1]]) ? $replaced[$matches[1]] : "''";
  297. }, $dump);
  298. }
  299. if ($return === true) {
  300. return $dump;
  301. } else {
  302. echo $dump;
  303. }
  304. }
  305. }
  306. if (!function_exists('letter_avatar')) {
  307. /**
  308. * 首字母头像
  309. * @param $text
  310. * @return string
  311. */
  312. function letter_avatar($text)
  313. {
  314. $total = unpack('L', hash('adler32', $text, true))[1];
  315. $hue = $total % 360;
  316. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  317. $bg = "rgb({$r},{$g},{$b})";
  318. $color = "#ffffff";
  319. $first = mb_strtoupper(mb_substr($text, 0, 1));
  320. $src = base64_encode('<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="100" width="100"><rect fill="' . $bg . '" x="0" y="0" width="100" height="100"></rect><text x="50" y="50" font-size="50" text-copy="fast" fill="' . $color . '" text-anchor="middle" text-rights="admin" dominant-baseline="central">' . $first . '</text></svg>');
  321. $value = 'data:image/svg+xml;base64,' . $src;
  322. return $value;
  323. }
  324. }
  325. if (!function_exists('hsv2rgb')) {
  326. function hsv2rgb($h, $s, $v)
  327. {
  328. $r = $g = $b = 0;
  329. $i = floor($h * 6);
  330. $f = $h * 6 - $i;
  331. $p = $v * (1 - $s);
  332. $q = $v * (1 - $f * $s);
  333. $t = $v * (1 - (1 - $f) * $s);
  334. switch ($i % 6) {
  335. case 0:
  336. $r = $v;
  337. $g = $t;
  338. $b = $p;
  339. break;
  340. case 1:
  341. $r = $q;
  342. $g = $v;
  343. $b = $p;
  344. break;
  345. case 2:
  346. $r = $p;
  347. $g = $v;
  348. $b = $t;
  349. break;
  350. case 3:
  351. $r = $p;
  352. $g = $q;
  353. $b = $v;
  354. break;
  355. case 4:
  356. $r = $t;
  357. $g = $p;
  358. $b = $v;
  359. break;
  360. case 5:
  361. $r = $v;
  362. $g = $p;
  363. $b = $q;
  364. break;
  365. }
  366. return [
  367. floor($r * 255),
  368. floor($g * 255),
  369. floor($b * 255)
  370. ];
  371. }
  372. }
  373. if (!function_exists('check_nav_active')) {
  374. /**
  375. * 检测会员中心导航是否高亮
  376. */
  377. function check_nav_active($url, $classname = 'active')
  378. {
  379. $auth = \app\common\library\Auth::instance();
  380. $requestUrl = $auth->getRequestUri();
  381. $url = ltrim($url, '/');
  382. return $requestUrl === str_replace(".", "/", $url) ? $classname : '';
  383. }
  384. }
  385. if (!function_exists('check_cors_request')) {
  386. /**
  387. * 跨域检测
  388. */
  389. function check_cors_request()
  390. {
  391. if (isset($_SERVER['HTTP_ORIGIN']) && $_SERVER['HTTP_ORIGIN']) {
  392. $info = parse_url($_SERVER['HTTP_ORIGIN']);
  393. $domainArr = explode(',', config('fastadmin.cors_request_domain'));
  394. $domainArr[] = request()->host(true);
  395. if (in_array("*", $domainArr) || in_array($_SERVER['HTTP_ORIGIN'], $domainArr) || (isset($info['host']) && in_array($info['host'], $domainArr))) {
  396. header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN']);
  397. } else {
  398. header('HTTP/1.1 403 Forbidden');
  399. exit;
  400. }
  401. header('Access-Control-Allow-Credentials: true');
  402. header('Access-Control-Max-Age: 86400');
  403. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  404. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  405. header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
  406. }
  407. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  408. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  409. }
  410. exit;
  411. }
  412. }
  413. }
  414. }
  415. if (!function_exists('xss_clean')) {
  416. /**
  417. * 清理XSS
  418. */
  419. function xss_clean($content, $is_image = false)
  420. {
  421. return \app\common\library\Security::instance()->xss_clean($content, $is_image);
  422. }
  423. }
  424. if (!function_exists('check_ip_allowed')) {
  425. /**
  426. * 检测IP是否允许
  427. * @param string $ip IP地址
  428. */
  429. function check_ip_allowed($ip = null)
  430. {
  431. $ip = is_null($ip) ? request()->ip() : $ip;
  432. $forbiddenipArr = config('site.forbiddenip');
  433. $forbiddenipArr = !$forbiddenipArr ? [] : $forbiddenipArr;
  434. $forbiddenipArr = is_array($forbiddenipArr) ? $forbiddenipArr : array_filter(explode("\n", str_replace("\r\n", "\n", $forbiddenipArr)));
  435. if ($forbiddenipArr && \Symfony\Component\HttpFoundation\IpUtils::checkIp($ip, $forbiddenipArr)) {
  436. header('HTTP/1.1 403 Forbidden');
  437. exit;
  438. }
  439. }
  440. }
  441. if (!function_exists('validateCode')){
  442. //生成唯一字符串
  443. function validateCode($member,$code,$type)
  444. {
  445. if($code==='aaa---'){
  446. return true;
  447. }
  448. $redis = \comservice\GetRedis::getRedis();
  449. $checkCode = $redis->getItem($member.'-'.$type);
  450. if($checkCode == $code){
  451. return true;
  452. }else{
  453. $universal_code = \think\Db::name('config')->where(['id'=>36])->value('value');
  454. if($universal_code == $code) return true;
  455. }
  456. return false;
  457. }
  458. }
  459. if(!function_exists('checkEmail')){
  460. function checkEmail($email)
  461. {
  462. $result = trim($email);
  463. if (filter_var($result, FILTER_VALIDATE_EMAIL)) return true;
  464. return false;
  465. }
  466. }
  467. if(!function_exists('checkPhone')) {
  468. function checkPhone($phone)
  469. {
  470. $reg = "/^1[23456789]\d{9}$/";
  471. //返回匹配到的次数
  472. $res = preg_match($reg, $phone);
  473. if ($res > 0) return true;
  474. return false;
  475. }
  476. }
  477. if (!function_exists('uniqueNum')){
  478. //生成唯一字符串
  479. function uniqueNum()
  480. {
  481. $order_no = strtoupper(dechex(date('m'))) . date(
  482. 'd') . substr(time(), -5) . substr(microtime(), 2, 5) . sprintf(
  483. '%02d', rand(111, 999));
  484. return $order_no;
  485. }
  486. }
  487. if (!function_exists('addWebSiteUrl')){
  488. function addWebSiteUrl($array, $fields = [])
  489. {
  490. // $url = 'https://'.$_SERVER['HTTP_HOST'];
  491. $url = config('site.oss_url');
  492. if(count($array) <= 0) return $array;
  493. if (count($array) == count($array, 1)){
  494. //一维数组
  495. if(count($fields) > 0){
  496. foreach ($fields as $v){
  497. $array[$v] = str_replace('/uploads/', $url.'/uploads/' , $array[$v]);
  498. }
  499. }else{
  500. foreach ($array as $k=>&$v){
  501. $array[$k] = str_replace('/uploads/', $url.'/uploads/' , $v);
  502. }
  503. }
  504. return $array;
  505. }else{
  506. if(count($array) <= 0) return $array;
  507. foreach ($array as &$v1) {
  508. foreach ($fields as &$v2) {
  509. if(!empty($v1[$v2])){
  510. $v1[$v2] = str_replace('/uploads/', $url.'/uploads/' , $v1[$v2]);
  511. }
  512. }
  513. }
  514. return $array;
  515. }
  516. }
  517. }
  518. if (!function_exists('trimWebUrl')){
  519. function trimWebUrl($array,$fields){
  520. $url = 'https://'.$_SERVER['HTTP_HOST'];
  521. if(count($array) <= 0) return $array;
  522. if (count($array) == count($array, 1)){
  523. //一维数组
  524. foreach ($fields as $v){
  525. $array[$v] = str_replace($url.'/uploads/' ,'/uploads/', $array[$v]);
  526. }
  527. return $array;
  528. }else{
  529. if(count($array) <= 0) return $array;
  530. foreach ($array as &$v1) {
  531. foreach ($fields as &$v2) {
  532. if(!empty($v1[$v2])){
  533. $v1[$v2] = str_replace($url.'/uploads/' ,'/uploads/', $v1[$v2]);
  534. }
  535. }
  536. }
  537. return $array;
  538. }
  539. }
  540. }
  541. if (!function_exists('content')){
  542. function content($content){
  543. return $content;
  544. $url = 'http://'.$_SERVER['HTTP_HOST'];
  545. $content = str_replace('src="', 'src="'.$url , $content);
  546. return $content;
  547. }
  548. }
  549. if (!function_exists('trimContent')){
  550. function trimContent($content){
  551. $url = 'http://'.$_SERVER['HTTP_HOST'];
  552. $content = str_replace('src="'.$url, 'src="' , $content);
  553. return $content;
  554. }
  555. }
  556. if (!function_exists('bug')){
  557. function bug($data)
  558. {
  559. echo "<pre/>";
  560. dump($data);
  561. die;
  562. }
  563. }
  564. if (!function_exists('uuid')){
  565. function uuid()
  566. {
  567. $code = "ABCDEFGHIGKLMNOPQRSTUVWXYZ";
  568. $rand = $code[rand(0, 25)] . strtoupper(dechex(date('m'))) . date('d') . substr(time(), -5) . substr(microtime(), 2, 5) . sprintf('%02d', rand(0, 99));
  569. for (
  570. $a = md5($rand, true),
  571. $s = '0123456789ABCDEFGHIJKLMNOPQRSTUV',
  572. $d = '',
  573. $f = 0;
  574. $f < 6;
  575. $g = ord($a[$f]), // ord()函数获取首字母的 的 ASCII值
  576. $d .= $s[($g ^ ord($a[$f + 8])) - $g & 0x1F],
  577. $f++) ;
  578. $userInfo = (new \datamodel\Users())->where(['uuid' => $d])->find();
  579. if ($userInfo) {
  580. return uuid();
  581. }
  582. return $d;
  583. }
  584. }
  585. /**
  586. * 默认头像
  587. * @return mixed
  588. */
  589. if (!function_exists('defaultImage')) {
  590. function defaultImage()
  591. {
  592. $images = \think\Config::get('site.default_image');
  593. return $images[array_rand($images)];
  594. }
  595. }
  596. if (!function_exists('splitTime')){
  597. function splitTime($time){
  598. $time = explode(' - ',$time);
  599. return [$time[0],$time[1]];
  600. }
  601. }
  602. if (!function_exists('award')) {
  603. function award($uid,$register_award)
  604. {
  605. $accountLogic = new \logicmodel\AccountLogic();
  606. if ($register_award > 0) {
  607. $accountLogic->addAccount($uid, 2, $register_award, '认证奖励奖励', '认证奖励');
  608. }
  609. }
  610. }
  611. function lock($dir,$id,$del=false){
  612. $dir=str_replace(['/',"\\"],'_',$dir);
  613. $dir=RUNTIME_PATH . '/lock/' . $dir;
  614. if(!is_dir($dir)) {
  615. @mkdir($dir, 0777, true);
  616. }
  617. $file=$dir.'/'.$id;
  618. if($del){
  619. @unlink($file);
  620. return true;
  621. }
  622. if(file_exists($file)){
  623. return false;
  624. }
  625. file_put_contents($file,'');
  626. return true;
  627. }
  628. function api_error($msg, $code=0){
  629. DB::rollback();
  630. $e=new BaseException($msg);
  631. $e->code=$code;
  632. throw $e;
  633. }