Reading/Writing a MS Word file in PHP

前端 未结 16 1615
借酒劲吻你
借酒劲吻你 2020-11-22 14:35

Is it possible to read and write Word (2003 and 2007) files in PHP without using a COM object? I know that I can:

$file = fopen(\'c:\\file.doc\', \'w+\');
fw         


        
16条回答
  •  执笔经年
    2020-11-22 14:53

    Most probably you won't be able to read Word documents without COM.

    Writing was covered in this topic

提交回复
热议问题