I'm having difficulties escaping double quotes using the PHP addslashes function. If I run:

$name = addslashes(get_the_title());

And the title has double quotes in it, the output still has double quotes without any escape characters.

eg. “Welcoming Diversity” Immigration Forum

I'm trying to insert Wordpress data into an .ICS file generator, but I'm unable to find a way to successfully parse the Wordpress data into a format that co-operates with the ICS format.

SOLUTION: My solution was to bypass the Wordpress function get_the_title() by using $post->post_title instead. Escaping worked properly with addslashes once I switched.

link|improve this question

71% accept rate
shouldn't your ics file generator handle that? – Mchl Jan 19 at 17:06
I'm writing an ICS generator, the existing generators I've looked at didn't offer the flexibility I need – Dave Hunt Jan 19 at 17:13
1  
well then, your generator should accept unescaped data and do all the needed escaping by itself – Mchl Jan 19 at 17:15
Thanks everyone for your help. It looks like the problem was in the Wordpress function itself (get_the_title()). As soon as I started using $post->post_title instead, the escaping worked properly. – Dave Hunt Jan 19 at 17:49
feedback

3 Answers

If the quotes are not getting escaped they are not true double quotes. It may be that your string is in a multibyte charset, or they are "fancy quotes".

This function often sorts this out:

function convert_fancy_quotes ($str) {
  return str_replace(array(chr(145),chr(146),chr(147),chr(148),chr(151)),array("'","'",'"','"','-'),$str);
}

So try:

$name = addslashes(convert_fancy_quotes(get_the_title()));

...although if this is the problem, they probably don't need escaping anyway, depending on what you are doing with the result.

link|improve this answer
feedback

The curly quotes is definitely something to check for. You also might want to check the expected input of function you're sending to. The addslashes() function will definitely add the escape characters, but if you're sending that output into another function that removes them, that could make it appear that the slashes aren't being escaped.

link|improve this answer
feedback

Maybe trim helps (for scaping regular quotes):

$name = addslashes(trim(get_the_title(), '"'));

For other kind of quotes you could try using regular expressions. Something like:

$title = preg_replace("/[\'\"\”\“]+/";, '', get_the_title());
$name = addslashes($title);
link|improve this answer
That doesn't seem to help either, the quotes remain unescaped. – Dave Hunt Jan 19 at 17:10
feedback

Your Answer

 
or
required, but never shown

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