PEARインストール 2010年04月03日 過去Blog pear • php PEARインストール # yum -y install php-pear PEARのバージョンを確認 # pear -V
PHP 配列の結合 2010年05月20日 過去Blog $array3 = array_merge($array1,$array2); a complete guide to the acai berry diet… この記事の続きを読む
お名前.com VPS サーバでphp アップデート 2011年04月25日 過去Blog まず、ファイアーウォールからSSHを許可 http://guide.onamae-server.com/vps/3/31/81/124/ ステム設定 > セキュリティー > アップデートからアップデートなし(上級者向け)に変更。これでyumコマンドが使えるようになる。 サーバ管理画面上から システム設定>ユーザ>一般アカウント で一般ユーザのアカウントを作成。 Macのターミナ… この記事の続きを読む
addressbook内のデータをtableViewに表示させる 2011年01月17日 過去Blog - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusab… この記事の続きを読む
PHP 要素Aが配列Bの中に存在するか調べる in_array 2010年06月11日 過去Blog 要素Aが配列Bの中に存在するか調べるには in_array を使う。 以下の例では、配列Bの中に要素Aが存在するので「Got elementA」が出力されます。 $arrayB = array("elementA", "NT", "Irix", "Linux"); if (in_array("elementA", $arrayB)) { echo "Got elementA"; }
この投稿へのコメント
コメントはまだありません。