vote up 3 vote down star
3

Hi,

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 using the PHP program. The problem I Have arises from all the non-standard characters that Word documents have, like curly quotes and ellipses ("..."). What I do at the moment is manually search and replace these kinds of things (and also foreign symbols such as e-acute) with either plain text or HTML entities (&eacute ; etc) Is there a function in PHP I can call that will take the output of a Word document and convert everything that should be entities into entities, and other symbols that don't display properly in Firefox into symbols that do display.

Thanks!

flag

3 Answers

vote up 2 vote down check

A better solution would be to ensure that your database is set-up to support UTF-8 characters. The additional characters available in the extended set should cover all the "non-standard" characters that you're talking about.

Otherwise, if you really must convert these characters into HTML entities, use htmlentities().

link|flag
In my experience, even with all of the character encodings set right, some characters just get swallowed by the time they get to the browser. I don't know if this is a bug in PHP (the server language I use most) or what, but I've found conversion to entities more reliable. – eyelidlessness Oct 13 '08 at 19:49
Hi Richard, any advice on how to set MySQL up to support UTF-8? Thanks! – Ben Oct 14 '08 at 8:24
CREATE DATABASE db_name CHARACTER SET 'utf8' - see dev.mysql.com/doc/refman/… and dev.mysql.com/doc/refman/…. Note you'll have to do something like SET NAMES 'utf8'; when you connect to the DB to ensure you fetch data in UTF-8. – Richard Turner Oct 17 '08 at 9:21
vote up 2 vote down

This has served me well in the past:

$str = mb_convert_encoding($str, 'HTML-ENTITIES', 'UTF-8')
link|flag
vote up 0 vote down

htmlspecialchars() will get you a long way, but watch out because Word documents are messy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.