<?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>携帯CMS工房ブログ</title>
	<atom:link href="http://blog.mobf.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.mobf.net</link>
	<description>携帯とPHPのTipsなど</description>
	<lastBuildDate>Tue, 31 Aug 2010 09:15:59 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>csvファイルのダウンロード</title>
		<link>http://blog.mobf.net/archives/116</link>
		<comments>http://blog.mobf.net/archives/116#comments</comments>
		<pubDate>Tue, 31 Aug 2010 09:15:59 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[一般]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=116</guid>
		<description><![CDATA[VIA:CakePHP1.2 を使って簡単に Csv ダウンロードを実装する方法 VIA:CSV Helper (PHP 5) *helper/csv.php &#60;?php class CsvHelper extends AppHelper { var $delimiter = ','; var $enclosure = '&#34;'; var $filename = 'export.csv'; var $line = array(); var $buffer; function CsvHelper() { $this-&#62;clear(); } function clear() { $this-&#62;line = array(); $this-&#62;buffer = fopen('php://temp/maxmemory:'. (5*1024*1024), 'r+'); } function addField($value) { $this-&#62;line[] = [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/116/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP5.3でエラー「Deprecated: Assigning the return ・・・」</title>
		<link>http://blog.mobf.net/archives/120</link>
		<comments>http://blog.mobf.net/archives/120#comments</comments>
		<pubDate>Fri, 27 Aug 2010 07:59:28 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[その他]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=120</guid>
		<description><![CDATA[VIA:Deprecated: Assigning the return value of new by reference is deprecated in
同様のエラーが出たのでメモ
Windowsの開発環境
Apa [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/120/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App外に共通で使用するComponentやHelperをPluginとして置く</title>
		<link>http://blog.mobf.net/archives/124</link>
		<comments>http://blog.mobf.net/archives/124#comments</comments>
		<pubDate>Fri, 27 Aug 2010 05:00:45 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[一般]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=124</guid>
		<description><![CDATA[VIA:第4回CakePHP勉強会@TokyoのLTで発表してきました！
具体的には、
/path/to/plugins/tools/controllers/components/hoge.php
var $compon [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/124/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakephpでSecurimage（captcha）を使う</title>
		<link>http://blog.mobf.net/archives/61</link>
		<comments>http://blog.mobf.net/archives/61#comments</comments>
		<pubDate>Thu, 26 Aug 2010 05:01:37 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[一般]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=61</guid>
		<description><![CDATA[携帯で、CAPTCHAを設定してみた。
「そこそこ見やすく、数字のみ」を基準にSecurimageとKCAPTCHAを比較してみた。どちらもCakephpで使用した実績はあるらしい（Googleで検索すると出てくるので） [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/61/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>session idの長さ</title>
		<link>http://blog.mobf.net/archives/72</link>
		<comments>http://blog.mobf.net/archives/72#comments</comments>
		<pubDate>Thu, 26 Aug 2010 04:58:49 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[一般]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=72</guid>
		<description><![CDATA[VIA:CakePHP に use_trans_sid 風の処理を組み込む
VIA:PHPのSession IDの長さを変更する

if( preg_match('/^[0-9a-f]{32}$/', $sid) ){
 [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/72/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>データベース接続情報を取得する</title>
		<link>http://blog.mobf.net/archives/78</link>
		<comments>http://blog.mobf.net/archives/78#comments</comments>
		<pubDate>Thu, 26 Aug 2010 04:58:11 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[モデル]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=78</guid>
		<description><![CDATA[VIA:DB接続情報をDSN形式で取得 VIA:getDSN /** * getDSN * - Gets a DSN for the other apps to connect to * the database independent from CakePHP */ function getDSN() { $this-&#62;db =&#38; ConnectionManager::getDataSource('default'); $c = $this-&#62;db-&#62;config; return &#34;{$c['driver']}://{$c['login']}:{$c['password']}@{$c['host']}/{$c['database']}&#34;; } //end getDSN()]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/78/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>携帯キャリアによってrenderの処理を変える</title>
		<link>http://blog.mobf.net/archives/74</link>
		<comments>http://blog.mobf.net/archives/74#comments</comments>
		<pubDate>Thu, 26 Aug 2010 04:57:33 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[携帯]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=74</guid>
		<description><![CDATA[VIA:携帯によって表示を変える function render( $action = null, $layout = null, $file = null ) { if( !empty( $_SERVER[&#34;HTTP_USER_AGENT&#34;] ) ) { $ua = $_SERVER[&#34;HTTP_USER_AGENT&#34;]; if( strpos( $ua, &#34;DoCoMo&#34; ) !== FALSE ){ $action = &#34;i_&#34; . ( $action ? $action : $this-&#62;action ); $layout = &#34;i_&#34; . $this-&#62;layout; }else if( strpos( $ua, &#34;UP.Browser&#34; ) !== FALSE [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/74/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1.2RCのLIKE,BETWEEN,INの書き方</title>
		<link>http://blog.mobf.net/archives/76</link>
		<comments>http://blog.mobf.net/archives/76#comments</comments>
		<pubDate>Wed, 25 Aug 2010 02:15:17 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[モデル]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=76</guid>
		<description><![CDATA[VIA:1.2RCのLIKE,BETWEEN,INの書き方まとめ $conditions = array(&#34;Post.title LIKE&#34; =&#62; &#34;%post%&#34;); $conditions = array(&#34;Post.date BETWEEN ? AND ?&#34; =&#62; array(&#34;2008-1-1&#34;, &#34;2009-1-1&#34;)); $conditions = array(&#34;Post.title LIKE ?&#34; =&#62; array(&#34;%post%&#34;)); $conditions = array(&#34;Post.id&#34; =&#62; array(1,2,3,4,5)); VIA:3.7.3.7 複雑な find の条件]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/76/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP Response Headersの文字コード</title>
		<link>http://blog.mobf.net/archives/87</link>
		<comments>http://blog.mobf.net/archives/87#comments</comments>
		<pubDate>Wed, 25 Aug 2010 02:14:42 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[PHP一般]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=87</guid>
		<description><![CDATA[VIA:PHPで出力する際にHTTP Response Headers で違う文字コードが指定される
HTTP Response Headers Content-Type が 目的の文字コードと違う場合は
出力文字列上で [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/87/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>コメントスパム</title>
		<link>http://blog.mobf.net/archives/85</link>
		<comments>http://blog.mobf.net/archives/85#comments</comments>
		<pubDate>Tue, 24 Aug 2010 10:25:01 +0000</pubDate>
		<dc:creator>suzuki</dc:creator>
				<category><![CDATA[PHP一般]]></category>

		<guid isPermaLink="false">http://blog.mobf.net/?p=85</guid>
		<description><![CDATA[VIA:ppBlog コメントスパム対策に四苦八苦
言語セットが日本語以外をはじく。

///// コメントスパム対策 //////
if(!ADMIN){
//httpの数が多いと弾く
if(substr_count( [...]]]></description>
		<wfw:commentRss>http://blog.mobf.net/archives/85/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
