<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: PHP UTF-8 0.1</title>
	<atom:link href="http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/</link>
	<description>News, opinion, and fresh thinking for web developers and designers. The official podcast of sitepoint.com.</description>
	<pubDate>Tue, 02 Dec 2008 02:17:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: dannolinux</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-63013</link>
		<dc:creator>dannolinux</dc:creator>
		<pubDate>Tue, 03 Oct 2006 02:25:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-63013</guid>
		<description>Hi Harry,

I was using str_replace to replace some parts of a utf-8 string with an ascii string, and I was getting some ? (question mark characters) So i tried your utf8_str_replace, but I am still getting the same characters.
Do I have to use the UTF-8 to Code Point Array Converter?

The utf-8 string I am trying to replace is in a PHP variable.

I don't have mbstring extension installed and I was hoping to be abel to replace strings with your utf8.php functions.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Harry,</p>
<p>I was using str_replace to replace some parts of a utf-8 string with an ascii string, and I was getting some ? (question mark characters) So i tried your utf8_str_replace, but I am still getting the same characters.<br />
Do I have to use the UTF-8 to Code Point Array Converter?</p>
<p>The utf-8 string I am trying to replace is in a PHP variable.</p>
<p>I don&#8217;t have mbstring extension installed and I was hoping to be abel to replace strings with your utf8.php functions.</p>
<p>Thanks</p>]]></content:encoded>
	</item>
	<item>
		<title>By: SitePoint Blogs &#187; AJAX Gotchas</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-22435</link>
		<dc:creator>SitePoint Blogs &#187; AJAX Gotchas</dc:creator>
		<pubDate>Wed, 10 May 2006 02:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-22435</guid>
		<description>[...] For PHP developers especially, where limited out-of-the-box support for UTF-8 keeps many sites on single-byte character encodings, this issue could cause nasty surprises indeed. For example, if you want to add the ability to submit a form via AJAX and keep the standard submission method as a fallback, you could potentially end up having to support two different encodings for that submitted data!  Tags: JavaScript, AJAX, PHP [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] For PHP developers especially, where limited out-of-the-box support for UTF-8 keeps many sites on single-byte character encodings, this issue could cause nasty surprises indeed. For example, if you want to add the ability to submit a form via AJAX and keep the standard submission method as a fallback, you could potentially end up having to support two different encodings for that submitted data!  Tags: JavaScript, AJAX, PHP [&#8230;]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: SitePoint Blogs &#187; Do you know your character encodings?</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-15706</link>
		<dc:creator>SitePoint Blogs &#187; Do you know your character encodings?</dc:creator>
		<pubDate>Wed, 15 Mar 2006 23:08:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-15706</guid>
		<description>[...] That is, unless you&#8217;re using PHP. One of the biggest weaknesses of PHP (up to and including PHP 5.1) is that its built-in string functions handle multi-byte character encodings like UTF-8 and UTF-16 incorrectly. PHP was written with the assumption that one byte equals one character, which simply isn&#8217;t the case in such encodings. An optional module or library can be used to provide alternative string functions that do support multi-byte characters, but many of the PHP scripts in circulation use the built-in functions, and simply can&#8217;t handle Unicode characters as a result. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] That is, unless you&#8217;re using PHP. One of the biggest weaknesses of PHP (up to and including PHP 5.1) is that its built-in string functions handle multi-byte character encodings like UTF-8 and UTF-16 incorrectly. PHP was written with the assumption that one byte equals one character, which simply isn&#8217;t the case in such encodings. An optional module or library can be used to provide alternative string functions that do support multi-byte characters, but many of the PHP scripts in circulation use the built-in functions, and simply can&#8217;t handle Unicode characters as a result. [&#8230;]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: SitePoint Blogs &#187; US-ASCII transliterations of Unicode text</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-15015</link>
		<dc:creator>SitePoint Blogs &#187; US-ASCII transliterations of Unicode text</dc:creator>
		<pubDate>Sat, 04 Mar 2006 01:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-15015</guid>
		<description>[...] Following on from this release, the this turned out to be easier than I thought&#8212;ported Text::Unidecode to PHP&#8212;code available here or track down the utf8_to_ascii package from the main page&#8212;released it seperately to keep with the original (Perl artistic) license while the rest of the stuff is under LGPL. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Following on from this release, the this turned out to be easier than I thought&#8212;ported Text::Unidecode to PHP&#8212;code available here or track down the utf8_to_ascii package from the main page&#8212;released it seperately to keep with the original (Perl artistic) license while the rest of the stuff is under LGPL. [&#8230;]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: davidgal</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-14731</link>
		<dc:creator>davidgal</dc:creator>
		<pubDate>Wed, 01 Mar 2006 23:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-14731</guid>
		<description>It is an amazing library. Thanks for the wonderful job Harry :)

Joomla development team has selected this library to provide utf-8 capabilities to Joomla 1.1 CMS. The PHP-UTF library has been integrated into the core framework of Joomla. A wrapper class provides a standard Joomla API for both core and 3PD extensions.

The result is that any PHP developer extending the Joomla framework gets utf-8 included thanks to PHP UTF8.

Even with PHP 6 on the horizon it is great to be able to provide true utf-8 capabilities with backward compatibility to PHP 4.1 and without having to force loading of mbstring on all those shared hosts.</description>
		<content:encoded><![CDATA[<p>It is an amazing library. Thanks for the wonderful job Harry :)</p>
<p>Joomla development team has selected this library to provide utf-8 capabilities to Joomla 1.1 CMS. The PHP-UTF library has been integrated into the core framework of Joomla. A wrapper class provides a standard Joomla API for both core and 3PD extensions.</p>
<p>The result is that any PHP developer extending the Joomla framework gets utf-8 included thanks to PHP UTF8.</p>
<p>Even with PHP 6 on the horizon it is great to be able to provide true utf-8 capabilities with backward compatibility to PHP 4.1 and without having to force loading of mbstring on all those shared hosts.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: HarryF</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-14626</link>
		<dc:creator>HarryF</dc:creator>
		<pubDate>Tue, 28 Feb 2006 13:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-14626</guid>
		<description>&lt;blockquote&gt;
I recently added simple romanization support for a bunch of non-latin languages to the UTF-8 lib in DokuWiki.
&lt;/blockquote&gt;

Will definately be swiping that (assuming it's OK). Might also take a shot at porting &lt;a href="http://cpan.uwinnipeg.ca/dist/Text-Unidecode" rel="nofollow"&gt;Text::Unidecode&lt;/a&gt; from CPAN.</description>
		<content:encoded><![CDATA[<blockquote><p>
I recently added simple romanization support for a bunch of non-latin languages to the UTF-8 lib in DokuWiki.
</p></blockquote>
<p>Will definately be swiping that (assuming it&#8217;s OK). Might also take a shot at porting <a href="http://cpan.uwinnipeg.ca/dist/Text-Unidecode" rel="nofollow">Text::Unidecode</a> from CPAN.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Andi</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-14623</link>
		<dc:creator>Andi</dc:creator>
		<pubDate>Tue, 28 Feb 2006 12:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-14623</guid>
		<description>Nice! BTW. I recently added simple romanization support for a bunch of non-latin languages to the UTF-8 lib in DokuWiki.</description>
		<content:encoded><![CDATA[<p>Nice! BTW. I recently added simple romanization support for a bunch of non-latin languages to the UTF-8 lib in DokuWiki.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: HarryF</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-14582</link>
		<dc:creator>HarryF</dc:creator>
		<pubDate>Mon, 27 Feb 2006 15:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-14582</guid>
		<description>Many thanks although let's wait and see for the bug reports... I�t�rn�ti�n�liz�ti�n</description>
		<content:encoded><![CDATA[<p>Many thanks although let&#8217;s wait and see for the bug reports&#8230; I�t�rn�ti�n�liz�ti�n</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ajking</title>
		<link>http://www.sitepoint.com/blogs/2006/02/26/php-utf-8-01/#comment-14578</link>
		<dc:creator>ajking</dc:creator>
		<pubDate>Mon, 27 Feb 2006 14:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1440#comment-14578</guid>
		<description>Looks like I get to be the first to say: congratulations, Harry, outstanding work (as usual).</description>
		<content:encoded><![CDATA[<p>Looks like I get to be the first to say: congratulations, Harry, outstanding work (as usual).</p>]]></content:encoded>
	</item>
</channel>
</rss>
