<small id='lhgzI'></small><noframes id='lhgzI'>

      <tfoot id='lhgzI'></tfoot>

      <legend id='lhgzI'><style id='lhgzI'><dir id='lhgzI'><q id='lhgzI'></q></dir></style></legend>
      <i id='lhgzI'><tr id='lhgzI'><dt id='lhgzI'><q id='lhgzI'><span id='lhgzI'><b id='lhgzI'><form id='lhgzI'><ins id='lhgzI'></ins><ul id='lhgzI'></ul><sub id='lhgzI'></sub></form><legend id='lhgzI'></legend><bdo id='lhgzI'><pre id='lhgzI'><center id='lhgzI'></center></pre></bdo></b><th id='lhgzI'></th></span></q></dt></tr></i><div id='lhgzI'><tfoot id='lhgzI'></tfoot><dl id='lhgzI'><fieldset id='lhgzI'></fieldset></dl></div>
        <bdo id='lhgzI'></bdo><ul id='lhgzI'></ul>
      1. PHP - 从上传的 Microsoft Word 文档中获取字数

        时间:2023-07-16
        1. <legend id='ZSsNz'><style id='ZSsNz'><dir id='ZSsNz'><q id='ZSsNz'></q></dir></style></legend>
            <bdo id='ZSsNz'></bdo><ul id='ZSsNz'></ul>

              <tbody id='ZSsNz'></tbody>
          • <i id='ZSsNz'><tr id='ZSsNz'><dt id='ZSsNz'><q id='ZSsNz'><span id='ZSsNz'><b id='ZSsNz'><form id='ZSsNz'><ins id='ZSsNz'></ins><ul id='ZSsNz'></ul><sub id='ZSsNz'></sub></form><legend id='ZSsNz'></legend><bdo id='ZSsNz'><pre id='ZSsNz'><center id='ZSsNz'></center></pre></bdo></b><th id='ZSsNz'></th></span></q></dt></tr></i><div id='ZSsNz'><tfoot id='ZSsNz'></tfoot><dl id='ZSsNz'><fieldset id='ZSsNz'></fieldset></dl></div>
              <tfoot id='ZSsNz'></tfoot>

              <small id='ZSsNz'></small><noframes id='ZSsNz'>

                  本文介绍了PHP - 从上传的 Microsoft Word 文档中获取字数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

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

                  I am trying to grab a word count from an uploaded word doc (.doc, .docx, .rtf) but it always carries through the annoying Word formatting.

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

                  Anybody tackled this issue before and know how to solve it? Thanks :)

                  推荐答案

                  您需要:

                  1. 区分文件类型

                  1. Distinguish the file type

                  $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();
                  }
                  

                • 将文档转换为文本

                • Convert the document to text

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

                  https://stackoverflow.com/a/7371315/2512934 for doc or docx http://webcheatsheet.com/php/reading_the_clean_text_from_rtf.php for rtf

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

                  这篇关于PHP - 从上传的 Microsoft Word 文档中获取字数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                • 上一篇:在 PHP 中高质量的 PDF 到 Word 转换? 下一篇:如何从 php 中的 .doc 模板创建一个 word .doc 文件

                  相关文章

                      <bdo id='BMRGq'></bdo><ul id='BMRGq'></ul>

                    <legend id='BMRGq'><style id='BMRGq'><dir id='BMRGq'><q id='BMRGq'></q></dir></style></legend>
                  1. <tfoot id='BMRGq'></tfoot>

                    <i id='BMRGq'><tr id='BMRGq'><dt id='BMRGq'><q id='BMRGq'><span id='BMRGq'><b id='BMRGq'><form id='BMRGq'><ins id='BMRGq'></ins><ul id='BMRGq'></ul><sub id='BMRGq'></sub></form><legend id='BMRGq'></legend><bdo id='BMRGq'><pre id='BMRGq'><center id='BMRGq'></center></pre></bdo></b><th id='BMRGq'></th></span></q></dt></tr></i><div id='BMRGq'><tfoot id='BMRGq'></tfoot><dl id='BMRGq'><fieldset id='BMRGq'></fieldset></dl></div>

                      <small id='BMRGq'></small><noframes id='BMRGq'>