菜鸟教程小白 发表于 2022-12-12 10:28:20

php - 使用从 iOS 设备发送的 multipart/form-data 检索 HTTP POST 变量


                                            <p><p>我需要检索从我的 iOS 应用程序发送的 POST 变量,但到目前为止我还没有运气。这是一些背景:</p>

<p>我有一个 iOS 应用程序,它将图像和一些变量一起发布到 php 页面,该页面只是将变量保存在文件中(用于调试)并将图像移动到当前目录(服务器端)。我可以使用 $_FILE 变量毫无问题地处理图像,但是我似乎根本无法获得任何 POST 参数。</p>

<p>一些一般信息和我尝试过的:</p>

<ul>
<li>尝试使用 $_POST 获取 post 变量,然后转储 $_POST...它是空的</li>
<li>尝试转储 $HTTP_RAW_POST_DATA(尽管 <a href="http://www.php.net/manual/en/ini.core.php#ini.always-populate-raw-post-data" rel="noreferrer noopener nofollow">this page</a> 表示使用 multipart/form-data 时未填充)</li>
<li>在看到 <a href="https://stackoverflow.com/questions/1075513/php-parsing-multipart-form-data" rel="noreferrer noopener nofollow">this post</a> 后检查了“post_max_size”变量(它是 8MB,我在 KB 范围内发送) </li>
<li>使用wireshark验证服务器确实接收到了变量</li>
</ul>

<p>我正在使用修改后的示例代码 <a href="https://stackoverflow.com/questions/8564833/ios-upload-image-and-text-using-http-post?answertab=votes#tab-top" rel="noreferrer noopener nofollow">from here</a> </p>

<pre><code>// create request
NSMutableURLRequest *request = [ init];
;
;
;
;

NSMutableDictionary* _params = [ init];
;
;
forKey:@&#34;userId&#34;];

// the boundary string : a random string, that will not repeat in post data, to separate post data fields.
NSString *BoundaryConstant = @&#34;V2ymHFg03ehbqgZCaKO6jy&#34;;

// string constant for the post parameter &#39;file&#39;
NSString *FileParamConstant = @&#34;media&#34;;

//Setup request URL
NSURL *requestURL = [ initWithString:@&#34;http://myWebAddress/myAction.php&#34;];

// set Content-Type in HTTP header
NSString *contentType = ;
;

// post body
NSMutableData *body = ;

// add params (all params are strings)
for (NSString *param in _params) {
    dataUsingEncoding:NSUTF8StringEncoding]];
    dataUsingEncoding:NSUTF8StringEncoding]];
    ] dataUsingEncoding:NSUTF8StringEncoding]];
}

// add image data
NSData *imageData = UIImageJPEGRepresentation(, 1.0);
if (imageData) {
    printf(&#34;appending image data\n&#34;);
    dataUsingEncoding:NSUTF8StringEncoding]];
    dataUsingEncoding:NSUTF8StringEncoding]];
    ];
    ;
    dataUsingEncoding:NSUTF8StringEncoding]];
}

dataUsingEncoding:NSUTF8StringEncoding]];

// setting the body of the post to the reqeust
;

// set the content-length
NSString *postLength = ];
;

// set URL
;

NSURLConnection *postConnection = [ initWithRequest:request delegate:self];
;
;
</code></pre>

<p>另外,这里是 myAction.php,就像现在一样:</p>

<pre><code>&lt;?php

$fp_file = fopen(&#34;./output_files.txt&#34;, &#34;w&#34;);
$fp_post = fopen(&#34;./output_post.txt&#34;, &#34;w&#34;);

$post_content = var_export($_POST , TRUE);
$file_content = var_export($_FILES, TRUE);
fwrite($fp_file, $file_content);
fwrite($fp_post, $post_content);


fclose($fp_file);
fclose($fp_post);

move_uploaded_file( $_FILES[&#39;media&#39;][&#39;tmp_name&#39;], &#34;test.jpg&#34;);

?&gt;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>经过 4 小时的调试,问题出在我的 php 代码中……已被编辑以反射(reflect)更改。变量 <strong>$post_content</strong> 是用名称 <strong>$post_contnet</strong> 创建的。希望这至少可以作为其他尝试实现类似服务的代码指南。</p>

<p>你不能解决愚蠢的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于php - 使用从 iOS 设备发送的 multipart/form-data 检索 HTTP POST 变量,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15956805/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15956805/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: php - 使用从 iOS 设备发送的 multipart/form-data 检索 HTTP POST 变量