Rumah > rangka kerja php > ThinkPHP > Bagaimana untuk menukar koleksi thinkphp kepada array

Bagaimana untuk menukar koleksi thinkphp kepada array

藏色散人
Lepaskan: 2022-12-13 09:42:43
asal
2118 orang telah melayarinya

Cara menukar koleksi thinkphp kepada tatasusunan: 1. Dapatkan pengumpulan data, kodnya seperti "Array([0] => appcommonmodelGoodsSku Object([connection:protected] => Array().. ."; 2. Gunakan kaedah "collection->toArray()" untuk menukar data kepada jenis tatasusunan standard

Bagaimana untuk menukar koleksi thinkphp kepada array

Persekitaran pengendalian tutorial ini : Sistem Windows 7 ThinkPHP versi 5, komputer Dell G3

Bagaimana untuk menukar koleksi kepada tatasusunan dalam thinkphp

Gunakan koleksi->toArray()? dalam thinkphp untuk menukar data kepada jenis tatasusunan standard

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

Array

(

    [0] => app\common\model\GoodsSku Object

        (

            [connection:protected] => Array

                (

                )

  

            [query:protected] =>

            [name:protected] => GoodsSku

            [table:protected] =>

            [class:protected] => app\common\model\GoodsSku

            [error:protected] =>

            [validate:protected] =>

            [pk:protected] =>

            [field:protected] => Array

                (

                )

  

            [readonly:protected] => Array

                (

                )

  

            [visible:protected] => Array

                (

                )

  

            [hidden:protected] => Array

                (

                )

  

            [append:protected] => Array

                (

                )

  

            [data:protected] => Array

                (

                    [goods_sku] => 683

                    [goods_id] => 529

                    [cost_price] => 1.00

                    [goods_storage] => 43

                    [goods_storage_alarm] => 0

                    [group_id] => 870aae760897e5cae3fe873c9e21f61e

                    [goods_serial] => TEST04170122

                    [goods_edittime] => 1540197326

                    [sku_name] => {"\u989c\u8272":"\u65e0"}

                    [sku_image] =>

                )

  

            [change:protected] => Array

                (

                )

  

            [auto:protected] => Array

                (

                )

  

            [insert:protected] => Array

                (

                )

  

            [update:protected] => Array

                (

                )

  

            [autoWriteTimestamp:protected] =>

            [createTime:protected] => create_time

            [updateTime:protected] => update_time

            [dateFormat:protected] => Y-m-d H:i:s

            [type:protected] => Array

                (

                )

  

            [isUpdate:protected] => 1

            [updateWhere:protected] =>

            [relation:protected] =>

            [failException:protected] =>

            [useGlobalScope:protected] => 1

            [batchValidate:protected] =>

            [resultSetType:protected] => array

            [relationWrite:protected] =>

        )

  

    [1] => app\common\model\GoodsSku Object

        (

            [connection:protected] => Array

                (

                )

  

            [query:protected] =>

            [name:protected] => GoodsSku

            [table:protected] =>

            [class:protected] => app\common\model\GoodsSku

            [error:protected] =>

            [validate:protected] =>

            [pk:protected] =>

            [field:protected] => Array

                (

                )

  

            [readonly:protected] => Array

                (

                )

  

            [visible:protected] => Array

                (

                )

  

            [hidden:protected] => Array

                (

                )

  

            [append:protected] => Array

                (

                )

  

            [data:protected] => Array

                (

                    [goods_sku] => 687

                    [goods_id] => 533

                    [cost_price] => 100.00

                    [goods_storage] => 103

                    [goods_storage_alarm] => 1

                    [group_id] => 33f38437951a0dcb4879d61147005c9a

                    [goods_serial] => 2d2e2d

                    [goods_edittime] => 1540276441

                    [sku_name] => {"\u989c\u8272":"\u9ed1\u8272","\u5c3a\u5bf8":"100mL","\u6750\u8d28":"\u73bb\u7483"}

                    [sku_image] => http://www.baifu.com/public/uploads/20181012/a97c87f127da7bad77c41d65d2496d66.png

                )

  

            [change:protected] => Array

                (

                )

  

            [auto:protected] => Array

                (

                )

  

            [insert:protected] => Array

                (

                )

  

            [update:protected] => Array

                (

                )

  

            [autoWriteTimestamp:protected] =>

            [createTime:protected] => create_time

            [updateTime:protected] => update_time

            [dateFormat:protected] => Y-m-d H:i:s

            [type:protected] => Array

                (

                )

  

            [isUpdate:protected] => 1

            [updateWhere:protected] =>

            [relation:protected] =>

            [failException:protected] =>

            [useGlobalScope:protected] => 1

            [batchValidate:protected] =>

            [resultSetType:protected] => array

            [relationWrite:protected] =>

        )

  

)

Salin selepas log masuk

Selepas pemprosesan

kembalikan koleksi($data)->toArray();

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

Array

(

    [0] => Array

        (

            [goods_sku] => 683

            [goods_id] => 529

            [cost_price] => 1.00

            [goods_storage] => 43

            [goods_storage_alarm] => 0

            [group_id] => 870aae760897e5cae3fe873c9e21f61e

            [goods_serial] => TEST04170122

            [goods_edittime] => 1540197326

            [sku_name] => {"\u989c\u8272":"\u65e0"}

            [sku_image] =>

        )

  

    [1] => Array

        (

            [goods_sku] => 687

            [goods_id] => 533

            [cost_price] => 100.00

            [goods_storage] => 103

            [goods_storage_alarm] => 1

            [group_id] => 33f38437951a0dcb4879d61147005c9a

            [goods_serial] => 2d2e2d

            [goods_edittime] => 1540276441

            [sku_name] => {"\u989c\u8272":"\u9ed1\u8272","\u5c3a\u5bf8":"100mL","\u6750\u8d28":"\u73bb\u7483"}

            [sku_image] => http://www.baidu.com/public/uploads/20181012/a97c87f127da7bad77c41d65d2496d66.png

        )

  

)

Salin selepas log masuk

Kajian yang disyorkan: "tutorial video thinkPHP

Atas ialah kandungan terperinci Bagaimana untuk menukar koleksi thinkphp kepada array. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Label berkaitan:
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan