Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用PHPWord以 doc docx 或 html 格式读取和写入文件。
但是例如,我在获取 docx 文件的所有内容时遇到了问题。
是否有获取 docx 文件或 html 文件内容的示例?(我尝试使用 phpword 示例,但没有帮助我)
我的愿望是从文件(docx、html 或其他)中提取所有文本并将其作为纯文本保存在数据库中。
任何人都可以帮助我吗?
我们可以使用 file_get_contents php 函数来获取文件的内容
$file = file_get_contents('./people.txt', true);
希望这会有所帮助!