比较两个上传的文件

时间:2013-08-24 09:22:18

标签: php file-upload file-io file-comparison

我想比较两个上传的文件并显示两个文件中相同的字符串告知百分比,但我不知道如何处理它。任何帮助都非常感谢。以下是我的上传表格。

<p>Choose files to be compared<p>
                    <hr />
                    <form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">                     


                  <!--APC hidden field-->
                      <input type="hidden" name="APC_UPLOAD_PROGRESS" id="progress_key" value="<?php echo $up_id; ?>"/>
                  <!---->

                      <input name="file" type="file" id="file" size="30"/>

                  <!--Include the iframe-->
                      <br />
                      <iframe id="upload_frame" name="upload_frame" frameborder="0" border="0" src="" scrolling="no" scrollbar="no" > </iframe>
                      <br />
                  <!---->


                  <!--APC hidden field-->
                      <input type="hidden" name="APC_UPLOAD_PROGRESS" id="progress_key1" value="<?php echo $up_id; ?>"/>
                  <!---->

                      <input name="file1" type="file" id="file1" size="30"/>

                  <!--Include the iframe-->
                      <br />
                      <iframe id="upload_frame" name="upload_frame" frameborder="0" border="0" src="" scrolling="no" scrollbar="no" > </iframe>
                      <br />
                  <!---->

                      <input name="Submit" type="submit" id="uploadFilesButton" style="width:250px; height:35px; background-color: #003333; color: #ffffff; border-radius: 10px;" value="PlagCheck" />
                    </form>

1 个答案:

答案 0 :(得分:0)

这篇文章(How to find extra lines by comparing two files using php?)可能有所帮助。所以做一些像:

  1. file_get_contents(将每个文件内容放入字符串中)
  2. 将字符串内容拆分为单词数组(explode(" ", $str);
  3. 存储您想要获得的文件的字数(例如File1)。
  4. 删除File1数组中File2数组

    中的所有单词

    foreach($file2array as $word){if (in_array($word, $file1array)){unset($file1array[$word])}}

  5. 在此阶段获取File1数组的长度。

  6. 使用步骤3和步骤5中的数字获取百分比。