2010-08-01から1ヶ月間の記事一覧

DD_belatedPNGがIE8でエラーがでる

IE6対策で初めて「DD_belatedPNG」を使用したが どうもエラーが出る。 しかもIE8だけ。 Web ページ エラーの詳細ユーザー エージェント: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; …

メモ:配列ループ、重複削除&詰める

php

//配列ループ for($i = 0; $i < count($this->arrProductsKeywords); $i++) { $arrKeywordsAll .= "," . $this->arrProductsKeywords[$i]['comment3']; } //重複削除&詰める foreach (array_unique($arrKeywords) as $arrKeywordsUni[]){};