菜鸟教程小白 发表于 2022-12-13 01:23:11

php - iOS 8 PHP 文件上传错误(服务器文件大小 = 0)


                                            <p><p>我有 2 个网络应用程序 <a href="http://iempty.tooliphone.net" rel="noreferrer noopener nofollow">iEmpty</a> & <a href="http://icustom.tooliphone.net" rel="noreferrer noopener nofollow">iCustom</a> .两者都要求用户从他们的 iPhone/iPad 上传一些图像文件。</p>

<p>我有一些 <strong>iOS8(测试版)用户</strong>告诉我“它不适用于 iOS8”。</p>

<p>对于这些 iOS 用户,我制作了日志以详细查看我上传的文件(通过经典的 HTML 文件上传字段)。
看来<strong>没有错误,但文件大小为零</strong>!</p>

<p>如果我将 $_FILES['myfilefieldname'] 转储到日志中,我会遇到这样的情况:</p>

<pre><code>array (
    &#39;name&#39; =&gt; &#39;image.jpg&#39;,
    &#39;type&#39; =&gt; &#39;image/jpeg&#39;,
    &#39;tmp_name&#39; =&gt; &#39;/tmp/phpaCGkNg&#39;,
    &#39;error&#39; =&gt; 0,
    &#39;size&#39; =&gt; 0,
)
</code></pre>

<p>我对模拟 iOS8 用户代理字符串的 <strong>iOS7 或 Chrome 桌面浏览器没有任何问题...</p>

<p>问题是<strong>我没有iOS8</strong>,所以我很难调试和发现问题所在!</p>

<ul>
<li>任何人都可以遇到同样的问题吗?</li>
<li>能否请您使用 iOS8 进行测试并告诉我是否有问题?</li>
</ul>

<p>提前感谢您的帮助!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这个问题有点老了,但是我遇到了这个问题,我花了两个星期才发现我尝试上传的文件路径有问题(它在上传之前存储在Documents目录中) :</p>

<p> <a href="https://developer.apple.com/library/content/technotes/tn2406/_index.html" rel="noreferrer noopener nofollow">Refer Technical Note 2406 by Apple</a> </p>

<p>重大变化是</p>

<blockquote>
<p>Beginning in iOS 8, the Documents and Library directories are no longer siblings of your application&#39;s bundle.</p>
</blockquote>

<p>不要存储文档的完整路径/URL。存储文件名并始终使用推荐的方法生成完整路径/URL。</p></p>
                                   
                                                <p style="font-size: 20px;">关于php - iOS 8 PHP 文件上传错误(服务器文件大小 = 0),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25584113/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25584113/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: php - iOS 8 PHP 文件上传错误(服务器文件大小 = 0)