乐于分享
好东西不私藏

excel里的拆分合并,有没有人这样操作

excel里的拆分合并,有没有人这样操作
最近在做一个电力的项目划分,一个单元格内好几个部位,类似于这种;
如果放到其他表格,还需要一个个复制,特别麻烦,想偷懒的我突然想到,当年刚开始做公众号的时候编写的一个操作,非常合适,简直完美,我先放个截图,看看有几个人用过;,如果感觉有用,我会发到群里
已关注
关注
重播 分享
关键代码我也放到下面,;

Private Sub CommandButton1_Click()

    ' 合并单元格保留所有内容内容

    Dim strText As String

    Dim rngCell As Range

    Dim fengefu As String

    On Error Resume Next

    'TextBox1.Text = Application.InputBox(Prompt:="输入分隔符,比如、,\,", Type:=2)

    If TypeName(Selection) = "Range" Then

        For Each rngCell In Selection

            strText = strText & rngCell.Value & TextBox1.text

        Next rngCell

        Application.DisplayAlerts = False

        Selection.Merge

        Selection.Value = Left(strText, Len(strText) - 1)

        Application.DisplayAlerts = True

    End If

    Set rngCell = Nothing

End Sub

Private Sub CommandButton2_Click()

    ' 保留原格式

    Dim strText As String

    Dim rngCell As Range

    Dim lie  As Integer, heng As Integer

    Dim fengefu As String

    Dim arr

    On Error Resume Next

    Set rngCell = ThisWorkbook.Worksheets(1).Cells(1, 1)

    '‘fengefu = Application.InputBox(Prompt:="输入分隔符,比如、,\,", Type:=2)

    If TypeName(Selection) = "Range" Then

        arr = Selection.Value

        For heng = LBound(arr, 1) To UBound(arr, 1)

            For lie = LBound(arr, 2) To UBound(arr, 2)

                strText = strText & arr(heng, lie) & TextBox1.text

            Next

            If heng < UBound(arr, 1) Then

                rngCell = rngCell & VBA.Left(strText, VBA.Len(strText) - 1) & VBA.Chr(10)

            Else

                rngCell = rngCell & Left(strText, Len(strText) - 1)

            End If

            strText = ""

        Next

        Application.DisplayAlerts = False

        Selection.Merge

        Selection.Value = rngCell

        rngCell.ClearContents

        Application.DisplayAlerts = True

    End If

    Set rngCell = Nothing

End Sub

Private Sub CommandButton3_Click() '拆分字符

    Dim arr As Variant, m As String

    Dim rng As Range, rngs As Range, rng1 As Range

    Dim i As Integer, j As Integer

    On Error Resume Next

    Set rngs = Intersect(Selection, ActiveSheet.UsedRange)

    If rngs Is Nothing Then Exit Sub

    Set rng1 = Range(TextBox2.text)

    For Each rng In rngs

    If rng.Value <> "" Then

        arr = Split(rng.Value, TextBox3.text)

        For i = LBound(arr) To UBound(arr)

            Cells(rng1.row + j, rng1.column + i) = arr(i)

        Next

         Erase arr

      End If

        j = j + 1

    Next

   Unload UserForm12

    Set rng1 = Nothing

      Set rng = Nothing

       Set rngs = Nothing

End Sub

Private Sub CommandButton4_Click()

    Dim arr As Variant

    Dim a As Integer, rng As Range, n As Range, r As String

    Dim rngs As Range

    Dim i As Integer, lie As Integer

    On Error Resume Next

    Set rngs = Intersect(Selection, ActiveSheet.UsedRange) '合并区域选择

    If rngs Is Nothing Then Exit Sub

    arr = rngs.Value

    rn1 = Range(TextBox2.text).row

    For i = LBound(arr, 1) To UBound(arr, 1)

        For lie = LBound(arr, 2) To UBound(arr, 2)

            '如果单元格不为空,则进行,否则跳过

            If arr(i, lie) <> "" Then

                If lie < UBound(arr, 2) Then

                    r = r & arr(i, lie) & TextBox3.text

                Else

                    r = r & arr(i, lie)

                End If

            End If

        Next lie

        Cells(rn1, Range(TextBox2.text).column) = r

        r = ""

        rn1 = rn1 + 1

    Next i

     Set n = Nothing

      Set rng = Nothing

End Sub

Private Sub CommandButton5_Click()

    Dim arr As Variant

    Dim a As Integer, rng As Range, n As Range, r As String

    Dim i As Integer, lie As Integer

    On Error Resume Next

    Set rngs = Intersect(Selection, ActiveSheet.UsedRange) '合并区域选择

    If rngs Is Nothing Then Exit Sub

    arr = rngs.Value

    rn1 = Range(TextBox2.text).row

    For i = LBound(arr, 1) To UBound(arr, 1)

        For lie = LBound(arr, 2) To UBound(arr, 2)

            '如果单元格不为空,则进行,否则跳过

            If arr(i, lie) <> "" Then

                If lie < UBound(arr, 2) Then

                    r = r & arr(i, lie) & TextBox3.text

                Else

                    r = r & arr(i, lie)

                End If

            End If

        Next lie

        If i < UBound(arr, 1) Then

            Range(TextBox2.text) = Range(TextBox2.text) & r & Chr(10)

        Else

            Range(TextBox2.text) = Range(TextBox2.text) & r

        End If

        r = ""

    Next i

    Set n = Nothing

      Set rng = Nothing

End Sub

Private Sub CommandButton6_Click() '两个数据区域排列组合

Dim rn As Range, rn1 As Range

Dim rng As Range, rngs As Range, n As Range

Dim j As Integer, row1 As Integer

Dim str As String, str1 As String

Dim arr, arr1

Dim coll As New Collection

If TextBox4.text = "" Or TextBox5.text = "" Or TextBox6.text = "" Then MsgBox "文本框不为空": Exit Sub

Set rng = Range(TextBox4.text)

Set rngs = Range(TextBox5.text)

Set n = Range(TextBox6.text)

     For Each rn In rng

        For Each rn1 In rngs

            str = rn & rn1

            coll.Add str

        Next

    Next

row1 = n.row

For j = 1 To coll.count

Cells(row1, n.column) = coll.Item(j)

row1 = row1 + 1

Next

 Set n = Nothing

 Set rng = Nothing

Set rngs = Nothing

Set coll = Nothing

End Sub

Private Sub CommandButton7_Click() '多列转换成单列

Dim n As Range

Dim arr

Dim lie As Integer, heng As Integer, row1 As Integer

Dim str As String

If TextBox7.text = "" Or TextBox8.text = "" Then MsgBox "文本框不为空": Exit Sub

 Set n = Range(TextBox8.text)

arr = Range(TextBox7.text)

row1 = n.row

For lie = LBound(arr, 2) To UBound(arr, 2)

    For heng = LBound(arr, 1) To UBound(arr, 1)

  Cells(row1, n.column) = arr(heng, lie)

  row1 = row1 + 1

Next

Next

 Set n = Nothing

 Set rng = Nothing

End Sub

Private Sub CommandButton8_Click() '按列拆分,方便查重

    Dim arr As Variant

    Dim rng As Range, rngs As Range, rng1 As Range

    Dim i As Integer, m As Integer

    On Error Resume Next

    Set rngs = Intersect(Selection, ActiveSheet.UsedRange)

    If rngs Is Nothing Then Exit Sub

    Set rng1 = Range(TextBox2.text)

    m = rng1.row

    For Each rng In rngs

    If rng.Value <> "" Then

        arr = Split(rng.Value, TextBox3.text)

        For i = LBound(arr) To UBound(arr)

            Cells(m, rng1.column) = arr(i)

           m = m + 1

        Next

         Erase arr '移除数组

      End If

    Next

   Unload UserForm12

   Set rng = Nothing

     Set rngs = Nothing

End Sub

Private Sub CommandButton9_Click() '左边全部完成,多对一

Dim rn As Range, rn1 As Range

Dim rng As Range, rngs As Range, n As Range

Dim j As Integer, row1 As Integer

Dim str As String, str1 As String

Dim arr, arr1

Dim coll As New Collection

If TextBox4.text = "" Or TextBox5.text = "" Or TextBox6.text = "" Then MsgBox "文本框不为空": Exit Sub

Set rng = Range(TextBox4.text) '数据区1

Set rngs = Range(TextBox5.text) '数据区2

Set n = Range(TextBox6.text) '数据区3

     For Each rn In rngs '数据区2

        For Each rn1 In rng '数据区1

            str = rn1 & rn

            coll.Add str

        Next

    Next

row1 = n.row

For j = 1 To coll.count

Cells(row1, n.column) = coll.Item(j)

row1 = row1 + 1

Next

 Set n = Nothing

 Set rng = Nothing

Set rngs = Nothing

Set coll = Nothing

End Sub

Private Sub TextBox2_DblClick(ByVal Cancel As MSForms.ReturnBoolean)

    Me.Hide

     On Error Resume Next

    TextBox2.text = Application.InputBox(Prompt:="选择输出区域,一个单元格即可", title:="选择区域", Type:=8).Address

    Me.Show

End Sub

Private Sub TextBox4_DblClick(ByVal Cancel As MSForms.ReturnBoolean)

 Me.Hide

  On Error Resume Next

TextBox4.text = Intersect(Application.InputBox(Prompt:="选择数据区域", Type:=8), ActiveSheet.UsedRange).Address

  Me.Show

End Sub

Private Sub TextBox5_DblClick(ByVal Cancel As MSForms.ReturnBoolean)

 Me.Hide

  On Error Resume Next

TextBox5.text = Intersect(Application.InputBox(Prompt:="选择数据区域", Type:=8), ActiveSheet.UsedRange).Address

  Me.Show

End Sub

Private Sub TextBox6_DblClick(ByVal Cancel As MSForms.ReturnBoolean)

    Me.Hide

     On Error Resume Next

    TextBox6.text = Application.InputBox(Prompt:="选择输出区域,一个单元格即可", title:="选择区域", Type:=8).Address

    Me.Show

End Sub

Private Sub TextBox7_DblClick(ByVal Cancel As MSForms.ReturnBoolean)

    Me.Hide

     On Error Resume Next

    TextBox7.text = Application.InputBox(Prompt:="选择输出区域,一个单元格即可", title:="选择区域", Type:=8).Address

    Me.Show

End Sub

Private Sub TextBox8_DblClick(ByVal Cancel As MSForms.ReturnBoolean)

    Me.Hide

     On Error Resume Next

    TextBox8.text = Application.InputBox(Prompt:="选择输出区域,一个单元格即可", title:="选择区域", Type:=8).Address

    Me.Show

End Sub

Private Sub UserForm_Initialize()

    TextBox2.text = "双击文本框"

End Sub

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-08-08 14:05:45 HTTP/1.1 GET : https://www.yeyulingfeng.com/a/767525.html
  2. 运行时间 : 0.213613s [ 吞吐率:4.68req/s ] 内存消耗:4,777.74kb 文件加载:145
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=8fd2803b0ab48dab3b9f65f1eb39b15e
  1. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/composer/autoload_static.php ( 6.05 KB )
  7. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
  10. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  11. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  12. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  13. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  14. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  15. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  16. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  17. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  18. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  19. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
  21. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/guzzlehttp/guzzle/src/functions.php ( 5.54 KB )
  22. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  23. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  24. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  25. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/provider.php ( 0.19 KB )
  26. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  27. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  28. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  29. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/common.php ( 0.03 KB )
  30. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  32. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/alipay.php ( 3.59 KB )
  33. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  34. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/app.php ( 0.95 KB )
  35. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cache.php ( 0.78 KB )
  36. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/console.php ( 0.23 KB )
  37. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/cookie.php ( 0.56 KB )
  38. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/database.php ( 2.48 KB )
  39. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/filesystem.php ( 0.61 KB )
  40. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/lang.php ( 0.91 KB )
  41. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/log.php ( 1.35 KB )
  42. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/middleware.php ( 0.19 KB )
  43. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/route.php ( 1.89 KB )
  44. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/session.php ( 0.57 KB )
  45. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/trace.php ( 0.34 KB )
  46. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/config/view.php ( 0.82 KB )
  47. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/event.php ( 0.25 KB )
  48. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  49. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/service.php ( 0.13 KB )
  50. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/AppService.php ( 0.26 KB )
  51. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  52. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  53. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  54. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  55. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  56. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/services.php ( 0.14 KB )
  57. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  58. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  59. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  60. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  61. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  62. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  63. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  64. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  65. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  66. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  67. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  68. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  69. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  70. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  71. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  72. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  73. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  74. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  75. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  76. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  77. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  78. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  79. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  80. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  81. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  82. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  83. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  84. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  85. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  86. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  87. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/Request.php ( 0.09 KB )
  88. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  89. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/middleware.php ( 0.25 KB )
  90. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  91. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  92. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  93. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  94. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  95. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  96. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  97. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  98. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  99. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  100. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  101. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  102. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  103. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/route/app.php ( 4.22 KB )
  104. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  105. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  106. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Index.php ( 9.87 KB )
  108. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/BaseController.php ( 2.05 KB )
  109. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  110. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  111. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  112. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  113. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  114. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  115. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  116. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  117. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  118. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  119. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  120. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  121. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  122. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  123. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  124. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  125. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  126. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  127. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  128. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  129. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  130. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  131. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  132. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  133. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  134. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  135. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/app/controller/Es.php ( 3.11 KB )
  136. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  137. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  138. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  139. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  140. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  141. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  142. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  143. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  144. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/runtime/temp/c935550e3e8a3a4c27dd94e439343fdf.php ( 31.50 KB )
  145. /yingpanguazai/ssd/ssd1/www/wwww.yeyulingfeng.com/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000907s ] mysql:host=127.0.0.1;port=3306;dbname=wenku;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001437s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000734s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000680s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001285s ]
  6. SELECT * FROM `set` [ RunTime:0.000590s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001501s ]
  8. SELECT * FROM `article` WHERE `id` = 767525 LIMIT 1 [ RunTime:0.001051s ]
  9. UPDATE `article` SET `lasttime` = 1786169145 WHERE `id` = 767525 [ RunTime:0.007185s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 64 LIMIT 1 [ RunTime:0.002126s ]
  11. SELECT * FROM `article` WHERE `id` < 767525 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.001191s ]
  12. SELECT * FROM `article` WHERE `id` > 767525 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001050s ]
  13. SELECT * FROM `article` WHERE `id` < 767525 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.005923s ]
  14. SELECT * FROM `article` WHERE `id` < 767525 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.007084s ]
  15. SELECT * FROM `article` WHERE `id` < 767525 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.004128s ]
0.215549s