<?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>凸凹 &#187; iPad</title>
	<atom:link href="http://dekoboko.org/tag/ipad/feed/" rel="self" type="application/rss+xml" />
	<link>http://dekoboko.org</link>
	<description>なんという作りかけ放置プレイ！</description>
	<lastBuildDate>Fri, 30 Dec 2011 14:53:25 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>【祝！iPad発売】iPhone・iPod Touch・iPadをPHPで判定して分岐</title>
		<link>http://dekoboko.org/apple/ipad-iphone-ipod-touch-php.html</link>
		<comments>http://dekoboko.org/apple/ipad-iphone-ipod-touch-php.html#comments</comments>
		<pubDate>Fri, 28 May 2010 02:09:32 +0000</pubDate>
		<dc:creator>Poyosi</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dekoboko.org/?p=197</guid>
		<description><![CDATA[PC・iPhoneとiPod Touch・iPadにてアクセスされた端末によって、一つのソースで対応する方法ではなくサーバーサイドで完全にHTML切り分けて表示する方法です。 1 2 3 4 5 6 7 8 9 10 1 [...]]]></description>
			<content:encoded><![CDATA[<p>PC・iPhoneとiPod Touch・iPadにてアクセスされた端末によって、一つのソースで対応する方法ではなくサーバーサイドで完全にHTML切り分けて表示する方法です。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span> php
<span style="color: #000088;">$ua</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_USER_AGENT'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">ereg</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;iPhone&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$ua</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">ereg</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;iPod&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$ua</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span>
<span style="color: #666666; font-style: italic;">//iPhone・iPod Touchの場合の処理</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;iPhoneかiPod Touchですね。&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'iphone.html'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">ereg</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;iPad&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$ua</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span>
<span style="color: #666666; font-style: italic;">//iPadの場合の処理</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;iPadですね。&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ipad.html'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span>
<span style="color: #666666; font-style: italic;">//それ以外の場合の処理</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;それ以外のブラウザですね。&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'other.html'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Webデザイナーがおすすめする初心者でもよく分かるPHPの参考書</p>
<div style="width: 100%;overflow: hidden;">
<div style="float: left;margin-right: 20px;">
<iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=dekoboko0d-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4839933146&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>
<div style="float: left;margin-right: 20px;">
<iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=dekoboko0d-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4798114383&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>
<div style="float: left;margin-right: 20px;">
<iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=dekoboko0d-22&#038;o=9&#038;p=8&#038;l=as1&#038;asins=4798119865&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dekoboko.org/apple/ipad-iphone-ipod-touch-php.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

