要素Aが配列Bの中に存在するか調べるには in_array を使う。
以下の例では、配列Bの中に要素Aが存在するので「Got elementA」が出力されます。
$arrayB = array("elementA", "NT", "Irix", "Linux");
if (in_array("elementA", $arrayB)) {
echo "Got elementA";
}
ピックアップ記事
PHP 要素Aが配列Bの中に存在するか調べる in_array
2010年06月11日
過去Blog
PCのバックアップ
2010年10月05日
過去Blog
PCのバックアップ箇所のメモ
デスクトップ
マイドキュメント
アウトルック(dbx,アカウント)
ffftp
hostsファイル
IE,fireFox ブックマーク
UITableView cell の選択を無効にする
2011年04月28日
過去Blog
cell.selectionStyle = UITableViewCellSelectionStyleNone;
UIDatePickerの取得する時間がずれる
2011年05月03日
過去Blog
以下のサイトを参考に
[ui_picker setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"GMT"]];
のようにすると日付の誤差はなくなりましたが、時刻の誤差はそのままでした。
http://pukapuka-ahirusan.blogspot.com/2010/11/uidatepicker.html
どうやら、UIDatePicke…
Linux ユーザー一覧の確認
2010年02月02日
過去Blog
[hogehoge@localhost ~]$ cat /etc/passwd
http://kazmax.zpp.jp/lin/etc_passwd.html is garcinia cambogia safe to take…
この投稿へのコメント
コメントはまだありません。