Searching through a string trying to find ' in PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T21:00:46Zhttp://stackoverflow.com/feeds/question/308438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308438/searching-through-a-string-trying-to-find-39-in-php2Searching through a string trying to find ' in PHPDrew2008-11-21T11:07:13Z2008-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#3084398Answer by Owen for Searching through a string trying to find ' in PHPOwen2008-11-21T11:09:08Z2008-11-21T11:09:08Z<p>did you try:</p>
<pre><code>$string = str_replace("&#39;", "<replacement>", $string);
</code></pre>
http://stackoverflow.com/questions/308438/searching-through-a-string-trying-to-find-39-in-php/308574#3085741Answer by RJHunter for Searching through a string trying to find ' in PHPRJHunter2008-11-21T12:08:28Z2008-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&#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#3087211Answer by Vincent Van Den Berghe for Searching through a string trying to find ' in PHPVincent Van Den Berghe2008-11-21T13:17:26Z2008-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>