- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
// ����� �������� � �������
if (!function_exists('indexOf')) {
function indexOf($needle, $haystack) {
for($i = 0; $i < count($haystack); $i++) {
if ($haystack[$i] == $needle) {
return true;
}
}
return false;
}
}