Searching through a string trying to find &#39; in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:00:46Z http://stackoverflow.com/feeds/question/308438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/308438/searching-through-a-string-trying-to-find-39-in-php 2 Searching through a string trying to find &#39; in PHP Drew 2008-11-21T11:07:13Z 2008-11-21T13:17:26Z <p>I am using tinyMCE and, rather annoyingly, it replaces all of my apostrophes with their HTML numeric equivalent. Now most of the time this isn't a problem but for some reason I am having a problem storing the apostrophe replacement. So i have to search through the string and replace them all. Any help would be much appreciated</p> http://stackoverflow.com/questions/308438/searching-through-a-string-trying-to-find-39-in-php/308439#308439 8 Answer by Owen for Searching through a string trying to find &#39; in PHP Owen 2008-11-21T11:09:08Z 2008-11-21T11:09:08Z <p>did you try:</p> <pre><code>$string = str_replace("&amp;#39;", "&lt;replacement&gt;", $string); </code></pre> http://stackoverflow.com/questions/308438/searching-through-a-string-trying-to-find-39-in-php/308574#308574 1 Answer by RJHunter for Searching through a string trying to find &#39; in PHP RJHunter 2008-11-21T12:08:28Z 2008-11-21T12:08:28Z <p>Is it just apostrophes that you want decoded from HTML entities, or everything?</p> <pre><code>print html_entity_decode("Hello, that&amp;#39;s an apostophe.", ENT_QUOTE); </code></pre> <p>will print</p> <pre><code>Hello, that's an apostrophe. </code></pre> http://stackoverflow.com/questions/308438/searching-through-a-string-trying-to-find-39-in-php/308721#308721 1 Answer by Vincent Van Den Berghe for Searching through a string trying to find &#39; in PHP Vincent Van Den Berghe 2008-11-21T13:17:26Z 2008-11-21T13:17:26Z <p>Why work around the problem when you can fix the cause? You can just turn of the TinyMCE entity encoding*. More info: <a href="http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/entity_encoding" rel="nofollow">here</a></p> <p>*Unless you want all the other characters encoded, that is.</p>