PHP - Get a word count from an uploaded Microsoft Word document(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 :)
推荐答案
您需要:
区分文件类型
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 - 从上传的 Microsoft Word 文档中获取字数


基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01