2012年3月16日金曜日

DBからのタイムスタンを年月日

date('Y.m.d',strtotime($accessData[$key]['jsk_update_date']));


2012年3月15日木曜日

.htaccessでPCと携帯とスマフォ判定

<IfModule mod_rewrite.c>
RewriteEngine On

#######スマフォサイト########
# iPod
RewriteCond %{HTTP_USER_AGENT} (iPod|iPhone|DDIPOKET|iPad|J-Android|Vodafone|SoftBank)
RewriteRule ^$ /morimoto/test/sp/ [R]


#######携帯サイト########
RewriteCond %{HTTP_USER_AGENT} (DoCoMo|KDDI|DDIPOKET|UP\.Browser|J-PHONE|Vodafone|SoftBank)
RewriteRule ^$ /morimoto/test/mb/ [R]

#######PCサイト########
RewriteRule ^$ /morimoto/test/pc/ [R]
</IfModule>