- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
// Released Under Affero General Public License, Version 3 (AGPL3)
// Author: [email protected]
$result = "TRUE";
$testable_string = strtolower($string_to_test);
$testable_string_length = strlen($string_to_test);
for($i_string = 0; $i_string < $testable_string_length; $i_string++)
{
$current_value_to_test = $testable_string[$i_string];
if( ($current_value_to_test != "0") &&
($current_value_to_test != "1") &&
($current_value_to_test != "2") &&
($current_value_to_test != "3") &&
($current_value_to_test != "4") &&
($current_value_to_test != "5") &&
($current_value_to_test != "6") &&
($current_value_to_test != "7") &&
($current_value_to_test != "8") &&
($current_value_to_test != "9") &&
($current_value_to_test != "a") &&
($current_value_to_test != "b") &&
($current_value_to_test != "c") &&
($current_value_to_test != "d") &&
($current_value_to_test != "e") &&
($current_value_to_test != "f") )
{
$result = "FALSE";
$i_string = $testable_string_length;
}
}
Смахивает на баян, но тем не менее.
http://php.net/manual/ru/function.is-numeric.php, из комментов.
Vindicar 14.12.2012 22:49 # +3
guest 15.12.2012 01:47 # 0
Elvenfighter 15.12.2012 14:52 # 0
Vindicar 15.12.2012 15:34 # +6
guest 15.12.2012 23:29 # +1
> Affero
scriptin 16.12.2012 01:55 # 0
anonimb84a2f6fd141 16.12.2012 19:21 # +1
scriptin 16.12.2012 20:23 # 0
"affer" - "более утвердительный"?
inkanus-gray 16.12.2012 21:13 # 0
wvxvw 16.12.2012 22:37 # −1
scriptin 16.12.2012 23:05 # +2
wvxvw 16.12.2012 23:48 # 0
KostylMaster 17.12.2012 06:48 # 0
KostylMaster 17.12.2012 06:56 # 0
1. Собственная реализация strtolower и strlen (не отдельной функцией)
2. $i_string = $testable_string_length; -> $i_string = $testable_string_length+1000; (для верности)
3. Использовать ASCII коды вместо строк в условии. (со всеми вытекающими)
4. Добавить именам еще информативности.
PS.
$Result строкой не плох.
vladthesparrow 17.12.2012 09:57 # 0
Насколько мне известно, эту порнографию можно было одной регуляркой заменить.
Vindicar 17.12.2012 16:35 # +2
OCETuH_ 25.08.2021 09:08 # 0