@@ -24,6 +24,8 @@ public static function parse_form_data($body, $content_type)
24
24
fwrite ($ file , $ m [4 ]);
25
25
rewind ($ file );
26
26
$ fields = self ::parse_nested_query ("{$ m [1 ]}[name]= {$ m [2 ]}& {$ m [1 ]}[type]= {$ m [3 ]}& {$ m [1 ]}[tmp_name]= {$ file_name }" );
27
+ error_log ("FIELDS FROM FILE MATCH " );
28
+ error_log (print_r ($ fields , true ));
27
29
$ data = self ::array_merge_recursive ($ data , $ fields );
28
30
} else {
29
31
preg_match ('/name=\"([^\"]*)\".*?[\n|\r]+([^\n\r].*)?$/m ' , $ chunk , $ m );
@@ -208,28 +210,26 @@ public static function status_code($status)
208
210
return self ::$ http_status_codes [$ status ];
209
211
}
210
212
211
- //private
212
- private static function array_merge_recursive ()
213
- {
214
- $ arrays = func_get_args ();
215
- $ base = array_shift ($ arrays );
213
+ public static function array_merge_recursive ()
214
+ {
215
+ $ arrays = func_get_args ();
216
+ $ base = array_shift ($ arrays );
216
217
217
- foreach ($ arrays as $ array )
218
- {
219
- reset ($ base );
220
- while (list ($ key , $ value ) = @each ($ array ))
221
- {
222
- if (is_array ($ value ) && isset ($ base [$ key ]) && is_array ($ base [$ key ]))
223
- $ base [$ key ] = self ::array_merge_recursive ($ base [$ key ], $ value );
224
- elseif (isset ($ base [$ key ]))
225
- $ base [] = $ value ;
226
- else
227
- $ base [$ key ] = $ value ;
228
- }
229
- }
230
- return $ base ;
231
- }
218
+ foreach ($ arrays as $ array ) {
219
+ reset ($ base );
220
+ while (list ($ key , $ value ) = @each ($ array )) {
221
+ if (is_array ($ value ) && isset ($ base [$ key ]) && is_array ($ base [$ key ]))
222
+ $ base [$ key ] = self ::array_merge_recursive ($ base [$ key ], $ value );
223
+ elseif (isset ($ base [$ key ]))
224
+ $ base [] = $ value ;
225
+ else
226
+ $ base [$ key ] = $ value ;
227
+ }
228
+ }
229
+ return $ base ;
230
+ }
232
231
232
+ //private
233
233
private static $ http_status_codes = array (
234
234
100 => 'Continue ' ,
235
235
101 => 'Switching Protocols ' ,
0 commit comments