2

我正在尝试从上传的 word 文档中获取字数,(.doc, .docx, .rtf)但它总是通过烦人的 Word 格式。

以前有人解决过这个问题并知道如何解决吗?谢谢 :)

4

1 回答 1

6

您将需要:

  1. 区分文件类型

    $file_name = $_FILES['image']['name'];
    $file_extn = end(explode(".", strtolower($_FILES['image']['name'])));
    
    if($file_extn == "doc" || $file_extn == "docx"){
        docx2text();
    }elseif($file_extn == "rtf"){
        rtf2text();
    }
    
  2. 将文档转换为文本

    https://stackoverflow.com/a/7371315/2512934用于 doc 或 docx http://webcheatsheet.com/php/reading_the_clean_text_from_rtf.php用于 rtf

  3. 数单词 http://php.net/manual/en/function.str-word-count.php

于 2013-07-31T12:51:35.087 回答