Skip to content

Commit 62aa6ef

Browse files
committed
merge $_POST and $_FILES recursively when using SAPIs
1 parent 8b0ea95 commit 62aa6ef

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

lib/Rackem/Request.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ private function parse_query($qs)
229229
return $data;
230230
}
231231

232-
private function parse_multipart($d)
233-
{
234-
if(!empty($_POST) || !empty($_FILES)) return array_merge($_POST, $_FILES);
235-
return Utils::parse_form_data($d, $this->content_type());
236-
}
232+
private function parse_multipart($d)
233+
{
234+
if (!empty($_POST) || !empty($_FILES)) return Utils::array_merge_recursive($_POST, $_FILES);
235+
return Utils::parse_form_data($d, $this->content_type());
236+
}
237237
}

lib/Rackem/Utils.php

+20-20
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ public static function parse_form_data($body, $content_type)
2424
fwrite($file, $m[4]);
2525
rewind($file);
2626
$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));
2729
$data = self::array_merge_recursive($data, $fields);
2830
} else {
2931
preg_match('/name=\"([^\"]*)\".*?[\n|\r]+([^\n\r].*)?$/m', $chunk, $m);
@@ -208,28 +210,26 @@ public static function status_code($status)
208210
return self::$http_status_codes[$status];
209211
}
210212

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);
216217

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+
}
232231

232+
//private
233233
private static $http_status_codes = array(
234234
100 => 'Continue',
235235
101 => 'Switching Protocols',

0 commit comments

Comments
 (0)