I am trying to convert HTML entities from a source string to their literal character equivalent.

For example:

<?php

$string = "Hello &#8211; World";
$converted = html_entity_decode($string);

?>

Whilst this rightly converts the entity on screen, when I look at the HTML code it is still showing the explicit entity. I need to change that so that it literally converts the entity as I am not using the string within an HTML page.

Any ideas on what I am doing wrong?

FYI I am sending the converted string to Apple's Push notification service:

$payload['aps'] = array('alert' => $converted, 'badge' => 1, 'sound' => 'default');
$payload = json_encode($payload);
link|improve this question

67% accept rate
The echo line is irrelevant to be honest. $converted still has the entity in it (I am sending converted to an iPhone through an API). – mootymoots Jan 9 '11 at 10:08
Yeah I figured; that's not the problem. I've provided an answer. – BoltClock Jan 9 '11 at 10:09
With no parameters, it does only convert &lt; &gt; &amp; back. – mario Jan 9 '11 at 10:10
feedback

2 Answers

up vote 6 down vote accepted

&#8211; maps to a UTF-8 character (the em dash) so you need to specify UTF-8 as the character encoding:

$converted = html_entity_decode($string, ENT_COMPAT, 'UTF-8');
link|improve this answer
I still get the entity when I view source on that one...? – mootymoots Jan 9 '11 at 10:12
@mootymoots: I tested it, I got the raw character instead of the entity. Wonder what else could be causing it... the HTML document's encoding perhaps? – BoltClock Jan 9 '11 at 10:13
it's converted on the page - but not in the source...? Looking in chrome – mootymoots Jan 9 '11 at 10:16
Just to add, the PHP is sending it via json_encode to Apple, it's not actually needed to be viewed in browser, it's just helping me debug. It comes through as the entity on the device. – mootymoots Jan 9 '11 at 10:17
Scratch that comment, you're using APNS. So that means your alert view is displaying &#8211; as well, right? – BoltClock Jan 9 '11 at 10:19
show 7 more comments
feedback

Try using charset

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
<?php
$string = "Hello &#8211; World";
$converted = html_entity_decode($string , ENT_COMPAT, 'UTF-8');
echo $converted;
?>

This should work And it should be converted also in the source

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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