There is a two-dimensional array obtained after parsing the page.
$reit[1][0]='text1'; $reit[1][1]='text2'; $reit[1][2]='text3'; $reit[1][3]='text4'; $reit[2][0]='7'; $reit[2][1]='1'; $reit[2][2]='1'; $reit[2][3]='2';
The task to sort, an array on the second column ... tried through array_multisort it is impossible ...
In the end should be:
$reit[1][0]='text1'; $reit[1][1]='text4'; $reit[1][2]='text2'; $reit[1][3]='text1'; $reit[2][0]='7'; $reit[2][1]='2'; $reit[2][2]='1'; $reit[2][3]='1';