common.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. package utils
  2. import (
  3. "crypto/md5"
  4. "crypto/sha1"
  5. "encoding/base64"
  6. "encoding/hex"
  7. "encoding/json"
  8. "errors"
  9. "fmt"
  10. "image"
  11. "image/png"
  12. "math"
  13. "math/rand"
  14. "os"
  15. "regexp"
  16. "strconv"
  17. "strings"
  18. "time"
  19. )
  20. //随机数种子
  21. var rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
  22. func GetRandString(size int) string {
  23. allLetterDigit := []string{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "!", "@", "#", "$", "%", "^", "&", "*"}
  24. randomSb := ""
  25. digitSize := len(allLetterDigit)
  26. for i := 0; i < size; i++ {
  27. randomSb += allLetterDigit[rnd.Intn(digitSize)]
  28. }
  29. return randomSb
  30. }
  31. func GetRandStringNoSpecialChar(size int) string {
  32. allLetterDigit := []string{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
  33. randomSb := ""
  34. digitSize := len(allLetterDigit)
  35. for i := 0; i < size; i++ {
  36. randomSb += allLetterDigit[rnd.Intn(digitSize)]
  37. }
  38. return randomSb
  39. }
  40. func StringsToJSON(str string) string {
  41. rs := []rune(str)
  42. jsons := ""
  43. for _, r := range rs {
  44. rint := int(r)
  45. if rint < 128 {
  46. jsons += string(r)
  47. } else {
  48. jsons += "\\u" + strconv.FormatInt(int64(rint), 16) // json
  49. }
  50. }
  51. return jsons
  52. }
  53. //序列化
  54. func ToString(v interface{}) string {
  55. data, _ := json.Marshal(v)
  56. return string(data)
  57. }
  58. //md5加密
  59. func MD5(data string) string {
  60. m := md5.Sum([]byte(data))
  61. return hex.EncodeToString(m[:])
  62. }
  63. // 获取数字随机字符
  64. func GetRandDigit(n int) string {
  65. return fmt.Sprintf("%0"+strconv.Itoa(n)+"d", rnd.Intn(int(math.Pow10(n))))
  66. }
  67. // 获取随机数
  68. func GetRandNumber(n int) int {
  69. return rnd.Intn(n)
  70. }
  71. func GetRandInt(min, max int) int {
  72. if min >= max || min == 0 || max == 0 {
  73. return max
  74. }
  75. return rand.Intn(max-min) + min
  76. }
  77. func GetToday(format string) string {
  78. today := time.Now().Format(format)
  79. return today
  80. }
  81. //获取今天剩余秒数
  82. func GetTodayLastSecond() time.Duration {
  83. today := GetToday(FormatDate) + " 23:59:59"
  84. end, _ := time.ParseInLocation(FormatDateTime, today, time.Local)
  85. return time.Duration(end.Unix()-time.Now().Local().Unix()) * time.Second
  86. }
  87. // 处理出生日期函数
  88. func GetBrithDate(idcard string) string {
  89. l := len(idcard)
  90. var s string
  91. if l == 15 {
  92. s = "19" + idcard[6:8] + "-" + idcard[8:10] + "-" + idcard[10:12]
  93. return s
  94. }
  95. if l == 18 {
  96. s = idcard[6:10] + "-" + idcard[10:12] + "-" + idcard[12:14]
  97. return s
  98. }
  99. return GetToday(FormatDate)
  100. }
  101. //处理性别
  102. func WhichSexByIdcard(idcard string) string {
  103. var sexs = [2]string{"女", "男"}
  104. length := len(idcard)
  105. if length == 18 {
  106. sex, _ := strconv.Atoi(string(idcard[16]))
  107. return sexs[sex%2]
  108. } else if length == 15 {
  109. sex, _ := strconv.Atoi(string(idcard[14]))
  110. return sexs[sex%2]
  111. }
  112. return "男"
  113. }
  114. //截取小数点后几位
  115. func SubFloatToString(f float64, m int) string {
  116. n := strconv.FormatFloat(f, 'f', -1, 64)
  117. if n == "" {
  118. return ""
  119. }
  120. if m >= len(n) {
  121. return n
  122. }
  123. newn := strings.Split(n, ".")
  124. if m == 0 {
  125. return newn[0]
  126. }
  127. if len(newn) < 2 || m >= len(newn[1]) {
  128. return n
  129. }
  130. return newn[0] + "." + newn[1][:m]
  131. }
  132. //截取小数点后几位
  133. func SubFloatToFloat(f float64, m int) float64 {
  134. newn := SubFloatToString(f, m)
  135. newf, _ := strconv.ParseFloat(newn, 64)
  136. return newf
  137. }
  138. //获取相差时间-年
  139. func GetYearDiffer(start_time, end_time string) int {
  140. t1, _ := time.ParseInLocation("2006-01-02", start_time, time.Local)
  141. t2, _ := time.ParseInLocation("2006-01-02", end_time, time.Local)
  142. age := t2.Year() - t1.Year()
  143. if t2.Month() < t1.Month() || (t2.Month() == t1.Month() && t2.Day() < t1.Day()) {
  144. age--
  145. }
  146. return age
  147. }
  148. //获取相差时间-秒
  149. func GetSecondDifferByTime(start_time, end_time time.Time) int64 {
  150. diff := end_time.Unix() - start_time.Unix()
  151. return diff
  152. }
  153. func FixFloat(f float64, m int) float64 {
  154. newn := SubFloatToString(f+0.00000001, m)
  155. newf, _ := strconv.ParseFloat(newn, 64)
  156. return newf
  157. }
  158. // 将字符串数组转化为逗号分割的字符串形式 ["str1","str2","str3"] >>> "str1,str2,str3"
  159. func StrListToString(strList []string) (str string) {
  160. if len(strList) > 0 {
  161. for k, v := range strList {
  162. if k == 0 {
  163. str = v
  164. } else {
  165. str = str + "," + v
  166. }
  167. }
  168. return
  169. }
  170. return ""
  171. }
  172. //Token
  173. func GetToken() string {
  174. randStr := GetRandString(64)
  175. token := MD5(randStr + Md5Key)
  176. tokenLen := 64 - len(token)
  177. return strings.ToUpper(token + GetRandString(tokenLen))
  178. }
  179. //数据没有记录
  180. func ErrNoRow() string {
  181. return "<QuerySeter> no row found"
  182. }
  183. //校验邮箱格式
  184. func ValidateEmailFormatat(email string) bool {
  185. reg := regexp.MustCompile(RegularEmail)
  186. return reg.MatchString(email)
  187. }
  188. //验证是否是手机号
  189. func ValidateMobileFormatat(mobileNum string) bool {
  190. reg := regexp.MustCompile(RegularMobile)
  191. return reg.MatchString(mobileNum)
  192. }
  193. //判断文件是否存在
  194. func FileIsExist(filePath string) bool {
  195. _, err := os.Stat(filePath)
  196. return err == nil || os.IsExist(err)
  197. }
  198. //获取图片扩展名
  199. func GetImgExt(file string) (ext string, err error) {
  200. var headerByte []byte
  201. headerByte = make([]byte, 8)
  202. fd, err := os.Open(file)
  203. if err != nil {
  204. return "", err
  205. }
  206. defer fd.Close()
  207. _, err = fd.Read(headerByte)
  208. if err != nil {
  209. return "", err
  210. }
  211. xStr := fmt.Sprintf("%x", headerByte)
  212. switch {
  213. case xStr == "89504e470d0a1a0a":
  214. ext = ".png"
  215. case xStr == "0000010001002020":
  216. ext = ".ico"
  217. case xStr == "0000020001002020":
  218. ext = ".cur"
  219. case xStr[:12] == "474946383961" || xStr[:12] == "474946383761":
  220. ext = ".gif"
  221. case xStr[:10] == "0000020000" || xStr[:10] == "0000100000":
  222. ext = ".tga"
  223. case xStr[:8] == "464f524d":
  224. ext = ".iff"
  225. case xStr[:8] == "52494646":
  226. ext = ".ani"
  227. case xStr[:4] == "4d4d" || xStr[:4] == "4949":
  228. ext = ".tiff"
  229. case xStr[:4] == "424d":
  230. ext = ".bmp"
  231. case xStr[:4] == "ffd8":
  232. ext = ".jpg"
  233. case xStr[:2] == "0a":
  234. ext = ".pcx"
  235. default:
  236. ext = ""
  237. }
  238. return ext, nil
  239. }
  240. //保存图片
  241. func SaveImage(path string, img image.Image) (err error) {
  242. //需要保持的文件
  243. imgfile, err := os.Create(path)
  244. defer imgfile.Close()
  245. // 以PNG格式保存文件
  246. err = png.Encode(imgfile, img)
  247. return err
  248. }
  249. //保存base64数据为文件
  250. func SaveBase64ToFile(content, path string) error {
  251. data, err := base64.StdEncoding.DecodeString(content)
  252. if err != nil {
  253. return err
  254. }
  255. f, err := os.Create(path)
  256. defer f.Close()
  257. if err != nil {
  258. return err
  259. }
  260. f.Write(data)
  261. return nil
  262. }
  263. func SaveBase64ToFileBySeek(content, path string) (err error) {
  264. data, err := base64.StdEncoding.DecodeString(content)
  265. exist, err := PathExists(path)
  266. if err != nil {
  267. return
  268. }
  269. if !exist {
  270. f, err := os.Create(path)
  271. if err != nil {
  272. return err
  273. }
  274. n, _ := f.Seek(0, 2)
  275. // 从末尾的偏移量开始写入内容
  276. _, err = f.WriteAt([]byte(data), n)
  277. defer f.Close()
  278. } else {
  279. f, err := os.OpenFile(path, os.O_WRONLY, 0644)
  280. if err != nil {
  281. return err
  282. }
  283. n, _ := f.Seek(0, 2)
  284. // 从末尾的偏移量开始写入内容
  285. _, err = f.WriteAt([]byte(data), n)
  286. defer f.Close()
  287. }
  288. return nil
  289. }
  290. func PathExists(path string) (bool, error) {
  291. _, err := os.Stat(path)
  292. if err == nil {
  293. return true, nil
  294. }
  295. if os.IsNotExist(err) {
  296. return false, nil
  297. }
  298. return false, err
  299. }
  300. func StartIndex(page, pagesize int) int {
  301. if page > 1 {
  302. return (page - 1) * pagesize
  303. }
  304. return 0
  305. }
  306. func PageCount(count, pagesize int) int {
  307. if count%pagesize > 0 {
  308. return count/pagesize + 1
  309. } else {
  310. return count / pagesize
  311. }
  312. }
  313. func TrimHtml(src string) string {
  314. //将HTML标签全转换成小写
  315. re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
  316. src = re.ReplaceAllStringFunc(src, strings.ToLower)
  317. re, _ = regexp.Compile("\\<img[\\S\\s]+?\\>")
  318. src = re.ReplaceAllString(src, "[图片]")
  319. re, _ = regexp.Compile("class[\\S\\s]+?>")
  320. src = re.ReplaceAllString(src, "")
  321. re, _ = regexp.Compile("\\<[\\S\\s]+?\\>")
  322. src = re.ReplaceAllString(src, "")
  323. return strings.TrimSpace(src)
  324. }
  325. //1556164246 -> 2019-04-25 03:50:46 +0000
  326. //timestamp
  327. func TimeToTimestamp() {
  328. fmt.Println(time.Unix(1556164246, 0).Format("2006-01-02 15:04:05"))
  329. }
  330. func ToUnicode(text string) string {
  331. textQuoted := strconv.QuoteToASCII(text)
  332. textUnquoted := textQuoted[1 : len(textQuoted)-1]
  333. return textUnquoted
  334. }
  335. func VersionToInt(version string) int {
  336. version = strings.Replace(version, ".", "", -1)
  337. n, _ := strconv.Atoi(version)
  338. return n
  339. }
  340. func IsCheckInList(list []int, s int) bool {
  341. for _, v := range list {
  342. if v == s {
  343. return true
  344. }
  345. }
  346. return false
  347. }
  348. func round(num float64) int {
  349. return int(num + math.Copysign(0.5, num))
  350. }
  351. func toFixed(num float64, precision int) float64 {
  352. output := math.Pow(10, float64(precision))
  353. return float64(round(num*output)) / output
  354. }
  355. // GetWilsonScore returns Wilson Score
  356. func GetWilsonScore(p, n float64) float64 {
  357. if p == 0 && n == 0 {
  358. return 0
  359. }
  360. return toFixed(((p+1.9208)/(p+n)-1.96*math.Sqrt(p*n/(p+n)+0.9604)/(p+n))/(1+3.8416/(p+n)), 2)
  361. }
  362. //将中文数字转化成数字,比如 第三百四十五章,返回第345章 不支持一亿及以上
  363. func ChangeWordsToNum(str string) (numStr string) {
  364. words := ([]rune)(str)
  365. num := 0
  366. n := 0
  367. for i := 0; i < len(words); i++ {
  368. word := string(words[i : i+1])
  369. switch word {
  370. case "万":
  371. if n == 0 {
  372. n = 1
  373. }
  374. n = n * 10000
  375. num = num*10000 + n
  376. n = 0
  377. case "千":
  378. if n == 0 {
  379. n = 1
  380. }
  381. n = n * 1000
  382. num += n
  383. n = 0
  384. case "百":
  385. if n == 0 {
  386. n = 1
  387. }
  388. n = n * 100
  389. num += n
  390. n = 0
  391. case "十":
  392. if n == 0 {
  393. n = 1
  394. }
  395. n = n * 10
  396. num += n
  397. n = 0
  398. case "一":
  399. n += 1
  400. case "二":
  401. n += 2
  402. case "三":
  403. n += 3
  404. case "四":
  405. n += 4
  406. case "五":
  407. n += 5
  408. case "六":
  409. n += 6
  410. case "七":
  411. n += 7
  412. case "八":
  413. n += 8
  414. case "九":
  415. n += 9
  416. case "零":
  417. default:
  418. if n > 0 {
  419. num += n
  420. n = 0
  421. }
  422. if num == 0 {
  423. numStr += word
  424. } else {
  425. numStr += strconv.Itoa(num) + word
  426. num = 0
  427. }
  428. }
  429. }
  430. if n > 0 {
  431. num += n
  432. n = 0
  433. }
  434. if num != 0 {
  435. numStr += strconv.Itoa(num)
  436. }
  437. return
  438. }
  439. func Sha1(data string) string {
  440. sha1 := sha1.New()
  441. sha1.Write([]byte(data))
  442. return hex.EncodeToString(sha1.Sum([]byte("")))
  443. }
  444. func GetWeekDay() (weekStr string) {
  445. nowWeek := time.Now().Weekday().String()
  446. switch nowWeek {
  447. case "Monday":
  448. weekStr = "周一"
  449. break
  450. case "Tuesday":
  451. weekStr = "周二"
  452. break
  453. case "Wednesday":
  454. weekStr = "周三"
  455. break
  456. case "Thursday":
  457. weekStr = "周四"
  458. break
  459. case "Friday":
  460. weekStr = "周五"
  461. break
  462. case "Saturday":
  463. weekStr = "周六"
  464. break
  465. case "Sunday":
  466. weekStr = "周日"
  467. break
  468. default:
  469. weekStr = ""
  470. break
  471. }
  472. return
  473. }
  474. // GetNowWeekMonday 获取本周周一的时间
  475. func GetNowWeekMonday() time.Time {
  476. offset := int(time.Monday - time.Now().Weekday())
  477. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  478. offset = -6
  479. }
  480. mondayTime := time.Now().AddDate(0, 0, offset)
  481. mondayTime = time.Date(mondayTime.Year(), mondayTime.Month(), mondayTime.Day(), 0, 0, 0, 0, mondayTime.Location())
  482. return mondayTime
  483. }
  484. // GetNowWeekLastDay 获取本周最后一天的时间
  485. func GetNowWeekLastDay() time.Time {
  486. offset := int(time.Monday - time.Now().Weekday())
  487. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  488. offset = -6
  489. }
  490. firstDayTime := time.Now().AddDate(0, 0, offset)
  491. firstDayTime = time.Date(firstDayTime.Year(), firstDayTime.Month(), firstDayTime.Day(), 0, 0, 0, 0, firstDayTime.Location()).AddDate(0, 0, 6)
  492. lastDayTime := time.Date(firstDayTime.Year(), firstDayTime.Month(), firstDayTime.Day(), 23, 59, 59, 0, firstDayTime.Location())
  493. return lastDayTime
  494. }
  495. // GetNowMonthFirstDay 获取本月第一天的时间
  496. func GetNowMonthFirstDay() time.Time {
  497. nowMonthFirstDay := time.Date(time.Now().Year(), time.Now().Month(), 1, 0, 0, 0, 0, time.Now().Location())
  498. return nowMonthFirstDay
  499. }
  500. // GetNowMonthLastDay 获取本月最后一天的时间
  501. func GetNowMonthLastDay() time.Time {
  502. nowMonthLastDay := time.Date(time.Now().Year(), time.Now().Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  503. nowMonthLastDay = time.Date(nowMonthLastDay.Year(), nowMonthLastDay.Month(), nowMonthLastDay.Day(), 23, 59, 59, 0, nowMonthLastDay.Location())
  504. return nowMonthLastDay
  505. }
  506. // GetNowQuarterFirstDay 获取本季度第一天的时间
  507. func GetNowQuarterFirstDay() time.Time {
  508. month := int(time.Now().Month())
  509. var nowQuarterFirstDay time.Time
  510. if month >= 1 && month <= 3 {
  511. //1月1号
  512. nowQuarterFirstDay = time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
  513. } else if month >= 4 && month <= 6 {
  514. //4月1号
  515. nowQuarterFirstDay = time.Date(time.Now().Year(), 4, 1, 0, 0, 0, 0, time.Now().Location())
  516. } else if month >= 7 && month <= 9 {
  517. nowQuarterFirstDay = time.Date(time.Now().Year(), 7, 1, 0, 0, 0, 0, time.Now().Location())
  518. } else {
  519. nowQuarterFirstDay = time.Date(time.Now().Year(), 10, 1, 0, 0, 0, 0, time.Now().Location())
  520. }
  521. return nowQuarterFirstDay
  522. }
  523. // GetNowQuarterLastDay 获取本季度最后一天的时间
  524. func GetNowQuarterLastDay() time.Time {
  525. month := int(time.Now().Month())
  526. var nowQuarterLastDay time.Time
  527. if month >= 1 && month <= 3 {
  528. //03-31 23:59:59
  529. nowQuarterLastDay = time.Date(time.Now().Year(), 3, 31, 23, 59, 59, 0, time.Now().Location())
  530. } else if month >= 4 && month <= 6 {
  531. //06-30 23:59:59
  532. nowQuarterLastDay = time.Date(time.Now().Year(), 6, 30, 23, 59, 59, 0, time.Now().Location())
  533. } else if month >= 7 && month <= 9 {
  534. //09-30 23:59:59
  535. nowQuarterLastDay = time.Date(time.Now().Year(), 9, 30, 23, 59, 59, 0, time.Now().Location())
  536. } else {
  537. //12-31 23:59:59
  538. nowQuarterLastDay = time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
  539. }
  540. return nowQuarterLastDay
  541. }
  542. // GetNowHalfYearFirstDay 获取当前半年的第一天的时间
  543. func GetNowHalfYearFirstDay() time.Time {
  544. month := int(time.Now().Month())
  545. var nowHalfYearLastDay time.Time
  546. if month >= 1 && month <= 6 {
  547. //03-31 23:59:59
  548. nowHalfYearLastDay = time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
  549. } else {
  550. //12-31 23:59:59
  551. nowHalfYearLastDay = time.Date(time.Now().Year(), 7, 1, 0, 0, 0, 0, time.Now().Location())
  552. }
  553. return nowHalfYearLastDay
  554. }
  555. // GetNowHalfYearLastDay 获取当前半年的最后一天的时间
  556. func GetNowHalfYearLastDay() time.Time {
  557. month := int(time.Now().Month())
  558. var nowHalfYearLastDay time.Time
  559. if month >= 1 && month <= 6 {
  560. //03-31 23:59:59
  561. nowHalfYearLastDay = time.Date(time.Now().Year(), 6, 30, 23, 59, 59, 0, time.Now().Location())
  562. } else {
  563. //12-31 23:59:59
  564. nowHalfYearLastDay = time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
  565. }
  566. return nowHalfYearLastDay
  567. }
  568. // GetNowYearFirstDay 获取当前年的最后一天的时间
  569. func GetNowYearFirstDay() time.Time {
  570. //12-31 23:59:59
  571. nowYearFirstDay := time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
  572. return nowYearFirstDay
  573. }
  574. // GetNowYearLastDay 获取当前年的最后一天的时间
  575. func GetNowYearLastDay() time.Time {
  576. //12-31 23:59:59
  577. nowYearLastDay := time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
  578. return nowYearLastDay
  579. }
  580. // CalculationDate 计算两个日期之间相差n年m月y天
  581. func CalculationDate(startDate, endDate time.Time) (beetweenDay string, err error) {
  582. //startDate := time.Date(2021, 3, 28, 0, 0, 0, 0, time.Now().Location())
  583. //endDate := time.Date(2022, 3, 31, 0, 0, 0, 0, time.Now().Location())
  584. numYear := endDate.Year() - startDate.Year()
  585. numMonth := int(endDate.Month()) - int(startDate.Month())
  586. numDay := 0
  587. //获取截止月的总天数
  588. endDateDays := getMonthDay(endDate.Year(), int(endDate.Month()))
  589. //获取截止月的前一个月
  590. endDatePrevMonthDate := endDate.AddDate(0, -1, 0)
  591. //获取截止日期的上一个月的总天数
  592. endDatePrevMonthDays := getMonthDay(endDatePrevMonthDate.Year(), int(endDatePrevMonthDate.Month()))
  593. //获取开始日期的的月份总天数
  594. startDateMonthDays := getMonthDay(startDate.Year(), int(startDate.Month()))
  595. //判断,截止月是否完全被选中,如果相等,那么代表截止月份全部天数被选择
  596. if endDate.Day() == endDateDays {
  597. numDay = startDateMonthDays - startDate.Day() + 1
  598. //如果剩余天数正好与开始日期的天数是一致的,那么月份加1
  599. if numDay == startDateMonthDays {
  600. numMonth++
  601. numDay = 0
  602. //超过月份了,那么年份加1
  603. if numMonth == 12 {
  604. numYear++
  605. numMonth = 0
  606. }
  607. }
  608. } else {
  609. numDay = endDate.Day() - startDate.Day() + 1
  610. }
  611. //天数小于0,那么向月份借一位
  612. if numDay < 0 {
  613. //向上一个月借一个月的天数
  614. numDay += endDatePrevMonthDays
  615. //总月份减去一个月
  616. numMonth = numMonth - 1
  617. }
  618. //月份小于0,那么向年份借一位
  619. if numMonth < 0 {
  620. //向上一个年借12个月
  621. numMonth += 12
  622. //总年份减去一年
  623. numYear = numYear - 1
  624. }
  625. if numYear < 0 {
  626. err = errors.New("日期异常")
  627. return
  628. }
  629. if numYear > 0 {
  630. beetweenDay += fmt.Sprint(numYear, "年")
  631. }
  632. if numMonth > 0 {
  633. beetweenDay += fmt.Sprint(numMonth, "个月")
  634. }
  635. if numDay > 0 {
  636. beetweenDay += fmt.Sprint(numDay, "天")
  637. }
  638. return
  639. }
  640. // getMonthDay 获取某年某月有多少天
  641. func getMonthDay(year, month int) (days int) {
  642. if month != 2 {
  643. if month == 4 || month == 6 || month == 9 || month == 11 {
  644. days = 30
  645. } else {
  646. days = 31
  647. }
  648. } else {
  649. if ((year%4) == 0 && (year%100) != 0) || (year%400) == 0 {
  650. days = 29
  651. } else {
  652. days = 28
  653. }
  654. }
  655. return
  656. }
  657. // SubStr 截取字符串(中文)
  658. func SubStr(str string, subLen int) string {
  659. strRune := []rune(str)
  660. bodyRuneLen := len(strRune)
  661. if bodyRuneLen > subLen {
  662. bodyRuneLen = subLen
  663. }
  664. str = string(strRune[:bodyRuneLen])
  665. return str
  666. }