Stefany93 Posted September 14, 2012 Share Posted September 14, 2012 Dear friends, I am trying to build a PHP graph using the GD library on the students' grades. The grades files must be in a word format and in this case docx. And the docx files are archived in a zip archive basically. So what I am trying to do is to open this docx file in the zip archive, read its contents do the calculations and display the graph. The problem occurs when trying to read the docx file the result is just gibberish. Here is the code I have written to open the file. It is taken from W3schools. <?php $zip = zip_open("grade.zip"); if ($zip) { while ($zip_entry = zip_read($zip)) { echo "<p>"; echo "Name: " . zip_entry_name($zip_entry) . "<br />"; if (zip_entry_open($zip, $zip_entry)) { echo "File Contents:<br/>"; $contents = zip_entry_read($zip_entry); echo "$contents<br />"; //zip_entry_close($zip_entry); } echo "</p>"; } } ?> And here is the result: Name: Test assignment.docx File Contents: PK! $????[Content_Types].xml ?( ??MO?@??&??W?z0?? ??M???.C??~dg???JK???Z???2???3??J??<*kR?Oz,#m??,e?????E??Di ?l ?F???t?#?6??"w?9????:0t?[?E [??N?1~???piM?Pi???r1/C4^????C?,??_??R&?+??H??d?\??CB??w?P???V????????*?h"|x?0????gV?5???i??y?$4????V"e??9?B??A???)j???T(?y?>vw?????v?(?SL???qW??U?DX???Q??w??4S?^? ??0?F?"??\?gsld?Y?dL?uH????????c9>(hVD?5??{?????A???7?t? ??PK!???N_rels/.rels ?( Please tell me what I am doing wrong so that the contents of the file are displayed so nasty. Thank you! Best Regards Stefany Quote Link to comment https://forums.phpfreaks.com/topic/268359-problem-with-reading-a-docx-file-in-a-zip-archive/ Share on other sites More sharing options...
kicken Posted September 14, 2012 Share Posted September 14, 2012 A docx file is itself a ZIP file which you would have to open and then extract information out of. There are libraries out there for working with word documents, you will probably want to look into one of them so that you are properly interpreting the docx format. Quote Link to comment https://forums.phpfreaks.com/topic/268359-problem-with-reading-a-docx-file-in-a-zip-archive/#findComment-1377834 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.