<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>takoblog von takomat :: Neue Lebensformen für Medien &#187; HEX-Code</title>
	<atom:link href="http://blog.takomat.com/tag/hex-code/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.takomat.com</link>
	<description></description>
	<lastBuildDate>Thu, 07 Jul 2011 14:26:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>PHP: Umlaute in HEX-Code umwandeln</title>
		<link>http://blog.takomat.com/php/php-umlaute-in-hex-code-umwandeln.html</link>
		<comments>http://blog.takomat.com/php/php-umlaute-in-hex-code-umwandeln.html#comments</comments>
		<pubDate>Sun, 02 Nov 2008 14:20:56 +0000</pubDate>
		<dc:creator>Marcin Jakubowski</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Schnippsel]]></category>
		<category><![CDATA[Code-Schnippsel]]></category>
		<category><![CDATA[HEX-Code]]></category>

		<guid isPermaLink="false">http://blog.takomat.com/?p=67</guid>
		<description><![CDATA[Hier ist eine kleine Funktion, mit der man Umlaute in HEX-Code umwandeln kann. PHP-code: function strip_umlaute&#40;$wert&#41;&#123; &#160; $umlaute = Array&#40;&#34;/ä/&#34;,&#34;/ö/&#34;,&#34;/ü/&#34;,&#34;/Ä/&#34;,&#34;/Ö/&#34;,&#34;/Ü/&#34;,&#34;/ß/&#34;&#41;; $replace = Array&#40;&#34;&#38;amp;auml;&#34;,&#34;&#38;amp;ouml;&#34;,&#34;&#38;amp;uuml;&#34;,&#34;&#38;amp;Auml;&#34;,&#34;&#38;amp;Ouml;&#34;,&#34;&#38;amp;Uuml;&#34;,&#34;&#38;amp;szlig;&#34;&#41;; $wert = preg_replace&#40;$umlaute, $replace, $wert&#41;; &#160; return $wert; &#125;]]></description>
			<content:encoded><![CDATA[<p>Hier ist eine kleine Funktion, mit der man Umlaute in HEX-Code umwandeln kann.<br />
<span id="more-67"></span><br />
<strong>PHP-code:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> strip_umlaute<span style="color: #009900;">&#40;</span><span style="color: #000088;">$wert</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000088;">$umlaute</span> <span style="color: #339933;">=</span> <span style="color: #990000;">Array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/ä/&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;/ö/&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;/ü/&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;/Ä/&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;/Ö/&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;/Ü/&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;/ß/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$replace</span> <span style="color: #339933;">=</span> <span style="color: #990000;">Array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;amp;auml;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&amp;amp;ouml;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&amp;amp;uuml;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&amp;amp;Auml;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&amp;amp;Ouml;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&amp;amp;Uuml;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&amp;amp;szlig;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$wert</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$umlaute</span><span style="color: #339933;">,</span> <span style="color: #000088;">$replace</span><span style="color: #339933;">,</span> <span style="color: #000088;">$wert</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$wert</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.takomat.com/php/php-umlaute-in-hex-code-umwandeln.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

