メイン | PHP:E-mailアドレスをチェック »

2005年09月07日

PHP:文字列が半角数字のみかチェック

if(ereg("^[0-9]+$", $str)){
    print "半角数字のみ";
}else{
    print "半角数字以外も含まれている(値なしも含む)";
}

投稿者 wing : 2005年09月07日 17:06

コメント