フォームの送信ボタンを画像にする 2010年04月16日 過去Blog フォーム • 送信ボタン <input type=”image” src=”画像のURL” onClick=”submit”/> best web hosting USA
PHP 配列から空白要素を削除する 2010年02月20日 過去Blog 配列 $array_exampleの要素のなかで、空白のものを削除。 $array_example = array_filter($array_example, 'strlen');
UITableView のcellの複数選択を実装する 2011年01月25日 過去Blog //セルが選択された際に呼び出される - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { //選択されたセルを取得 UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; /… この記事の続きを読む
linux : chomod,chown パーミッション変更 2009年11月27日 過去Blog chown USER_NAME /DIR_PATH/ chown USER_NAME -R /DIR_PATH/ -Rをつけることで指定ディレクトリ以下の全てのディレクトリ、ファイルの所有者を変更します。 physical therapy chicago… この記事の続きを読む
[UIColor] フォントの色を変えたい時 2010年12月13日 過去Blog UIアイテムに表示させるフォントの色などの設定 self.TextLabel = [self newLabelWithPrimaryColor:[UIColor colorWithRed:0.0 green:0.5 blue:1.0 alpha:1.0] selectedColor:[UIColor whiteColor] fontSize:14.0 bold:YES]; 上記のようにす… この記事の続きを読む
phpでランダムなパスワードを生成 2010年01月29日 過去Blog 使用例 //パスワード生成クラス読み込み require_once 'My/Password.php'; //デフォルトは8桁のパスワードが生成されます $password = My_Password::getPassword(); var_dump($password); //『32桁、小文字英字のみ』のパスワード生成 $password = My_Password::getPassword(32, 'small'); var_dump($password); … この記事の続きを読む
この投稿へのコメント
コメントはまだありません。