Converting a Word document into usable HTML in PHP

前端 未结 5 1943
轻奢々
轻奢々 2020-12-17 03:41

I have a set of Word documents which I want to publish using a PHP tool I\'ve written. I copy and paste the Word documents into a text box and then save them into MySQL usin

5条回答
  •  遥遥无期
    2020-12-17 04:15

    This has served me well in the past:

    $str = mb_convert_encoding($str, 'HTML-ENTITIES', 'UTF-8')
    

提交回复
热议问题