<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>PHPの開発を8倍早くする方法 へのコメント</title>
	<atom:link href="http://www.akiyan.com/blog/archives/2007/05/php8.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.akiyan.com/blog/archives/2007/05/php8.html</link>
	<description></description>
	<lastBuildDate>Wed, 17 Mar 2010 12:07:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>kenji-u より</title>
		<link>http://www.akiyan.com/blog/archives/2007/05/php8.html/comment-page-1#comment-504</link>
		<dc:creator>kenji-u</dc:creator>
		<pubDate>Fri, 08 Jun 2007 01:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.akiyan.com/wp/?p=248#comment-504</guid>
		<description>トラックバックが飛ばないのでこちらに

http://d.hatena.ne.jp/kenji-u/20070531/p1
</description>
		<content:encoded><![CDATA[<p>トラックバックが飛ばないのでこちらに</p>
<p><a href="http://d.hatena.ne.jp/kenji-u/20070531/p1" rel="nofollow">http://d.hatena.ne.jp/kenji-u/20070531/p1</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>幸之介 より</title>
		<link>http://www.akiyan.com/blog/archives/2007/05/php8.html/comment-page-1#comment-503</link>
		<dc:creator>幸之介</dc:creator>
		<pubDate>Fri, 01 Jun 2007 09:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.akiyan.com/wp/?p=248#comment-503</guid>
		<description>print_rのリッチなやつ貼っておきますね

// デバッグ用出力関数
function p( $var, $label = FALSE ){
if( $label ){
$text = &#039;&#039; . $label . &#039; : &#039;;
}
else{
$text = &#039;&#039;;
}
$text.= htmlspecialchars( print_r($var,1) );
$text.= &#039;&#039;;
$text = preg_replace( &#039;/(Array)([\r\n])/&#039;, &#039;$1$2&#039;, $text );
$text = preg_replace( &#039;/ (\[.+?\]) /&#039;    , &#039; $1 &#039;  , $text );
$text = preg_replace( &#039;/ (\=\&gt;) /&#039;    , &#039; $1 &#039;, $text );
echo $text;
}

</description>
		<content:encoded><![CDATA[<p>print_rのリッチなやつ貼っておきますね</p>
<p>// デバッグ用出力関数<br />
function p( $var, $label = FALSE ){<br />
if( $label ){<br />
$text = '' . $label . ' : ';<br />
}<br />
else{<br />
$text = '';<br />
}<br />
$text.= htmlspecialchars( print_r($var,1) );<br />
$text.= '';<br />
$text = preg_replace( '/(Array)([\r\n])/', '$1$2', $text );<br />
$text = preg_replace( '/ (\[.+?\]) /'    , ' $1 '  , $text );<br />
$text = preg_replace( '/ (\=\&gt;) /'    , ' $1 ', $text );<br />
echo $text;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>あきやん より</title>
		<link>http://www.akiyan.com/blog/archives/2007/05/php8.html/comment-page-1#comment-502</link>
		<dc:creator>あきやん</dc:creator>
		<pubDate>Thu, 31 May 2007 06:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.akiyan.com/wp/?p=248#comment-502</guid>
		<description>（厳密には関数ポインタではなく変数の文字列で呼び出し、ですね）
</description>
		<content:encoded><![CDATA[<p>（厳密には関数ポインタではなく変数の文字列で呼び出し、ですね）</p>
]]></content:encoded>
	</item>
	<item>
		<title>あきやん より</title>
		<link>http://www.akiyan.com/blog/archives/2007/05/php8.html/comment-page-1#comment-501</link>
		<dc:creator>あきやん</dc:creator>
		<pubDate>Thu, 31 May 2007 00:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.akiyan.com/wp/?p=248#comment-501</guid>
		<description>スコープが限られていれば、関数ポインタもいいですね！

</description>
		<content:encoded><![CDATA[<p>スコープが限られていれば、関数ポインタもいいですね！</p>
]]></content:encoded>
	</item>
	<item>
		<title>心は萌え より</title>
		<link>http://www.akiyan.com/blog/archives/2007/05/php8.html/comment-page-1#comment-500</link>
		<dc:creator>心は萌え</dc:creator>
		<pubDate>Wed, 30 May 2007 22:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.akiyan.com/wp/?p=248#comment-500</guid>
		<description>失礼しました。
$h=&#039;htmlspecialchars&#039;;
です。
</description>
		<content:encoded><![CDATA[<p>失礼しました。<br />
$h='htmlspecialchars';<br />
です。</p>
]]></content:encoded>
	</item>
	<item>
		<title>心は萌え より</title>
		<link>http://www.akiyan.com/blog/archives/2007/05/php8.html/comment-page-1#comment-499</link>
		<dc:creator>心は萌え</dc:creator>
		<pubDate>Wed, 30 May 2007 22:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.akiyan.com/wp/?p=248#comment-499</guid>
		<description>$h=htmlspecialchars;
$h($str,$style,$charset)；
hの方は関数ポインタで良いと思われ。
</description>
		<content:encoded><![CDATA[<p>$h=htmlspecialchars;<br />
$h($str,$style,$charset)；<br />
hの方は関数ポインタで良いと思われ。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
