function clearAddr($addr) { $associate = array( " " => "", // "." => "", "." => "", "." => "", "." => "", "." => "", "." => "", "." => "", "." => "", "-." => "", "-" => "", "-." => "", "-" => "", "-." => "", "-" => "", "." => "", "" => "", ".-" => "", "." => "", "" => "", "." => "", "." => "", "." => "", "." => "", "." => "", "-." => "", "-" => "", "-" => "", "-." => "", "1-" => "", "2-" => "", "3-" => "", "4-" => "", "5-" => "", "6-" => "", "7-" => "", "8-" => "", "9-" => "", "1-" => "", "2-" => "", "3-" => "", "4-" => "", "5-" => "", "6-" => "", "7-" => "", "8-" => "", "9-" => "" ); $clrd_addr = strtolower(strtr($addr, $associate)); return $clrd_addr; } function getNums($search) { preg_match_all("/[0-9]*/", $search, $matches); $matches = array_diff($matches[0], array("")); // $matches return $matches; } function getMatchAdress($addr_string, &$Addr_array) { if(!isset($addr_string) || strlen($addr_string) < 1) return false; $list = array(); $nums = getNums($addr_string); // $addr_string = clearAddr(preg_replace("/[0-9]*/", "", $addr_string)); // $word_parts = explode("\n", chunk_split(trim($addr_string), 2)); // 2 array_pop($word_parts); // foreach($Addr_array as $row) { $word_match = 0; $last_pos = 0; // $clr_row = clearAddr($row); $row_nums = getNums($row); // .. foreach($word_parts as $syllable) { $match_in = strpos($clr_row, strtolower(trim($syllable)), $last_pos); // - // if($match_in > -1 && $match_in < $last_pos + 4) { $last_pos = $match_in + strlen(trim($syllable)); $word_match++; } } $all_percents = count($word_parts); // $found_percents = $word_match; // $match_perc = round($found_percents * 100 / $all_percents); // $max_point = 70; // // if($match_perc >= $max_point) { if(!empty($nums)) { // foreach($nums as $num) { if(in_array($num, $row_nums)) $list[] = $row; } } else { // $list[] = $row; } } } return $list; }
. , .40
. , .14
4- ., .1
. , .15
., .6
. ., .48
...
...
...
. , .31/22
. , .23, . 41
. -, .11
- , .39, .1
4- ., .4
, .2
Array ( [0] => 4- ., .1 [1] => 4- ., .4 )
Source: https://habr.com/ru/post/140943/
All Articles