- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
function IsAlphaNumeric($str)
{
$old = Array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
$new = Array("", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "");
if (str_replace($str, $old, $new) == "")
{
return (true);
}
else
{
return (false);
}
}
wmmorgun 08.12.2010 18:10 # −1
fork 08.12.2010 19:00 # −1
wmmorgun 08.12.2010 19:02 # +1
Lure Of Chaos 08.12.2010 18:27 # −1
revis0r 09.12.2010 10:48 # +1
Надо не str_replace($str, $old, $new), а str_replace($old, $new, $str)
ab368 24.08.2021 23:00 # 0