Answers for "read text from docx in php"

PHP
1

read text from docx in php

<?php
include ('Doc2Txt.php');
$docObj = new Doc2Txt('test.docx');
$txt = $docObj->convertToText();
echo $txt;
Posted by: Guest on January-08-2022

Browse Popular Code Answers by Language