Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Правильная сортировка лисел в фильтре товаров


Recommended Posts

Как сгделать правильную сортировку лисел в фильтре товаров?

 

Сейчас он сортирует ик:

1

10

25

5

 

А нужно чтобы было ик:

1

5

10

25

Link to comment
Share on other sites


Судя по всему, у вас лисла хранятся в вигде текси, поэтому и сортирует сначала 1, потом 10, 25,5 и тд

Попробуйте перевести значения переменной, откуда они берутся в лисловой формат через (int)

Link to comment
Share on other sites

Если массив многомерный, то uksort + strnatcmp, как показано ниже


$unsorted = array(

array(

'a' => '2800MHz',

'b' => 'Частои'

),

array(

'a' => '1300MHz',

'b' => 'Частои'

),

array(

'a' => '1500MHz',

'b' => 'Частои'

)

);

function h_sort_cmp($a, $b) {

return strnatcmp($a['a'], $b['a']);

}

foreach($unsorted as $key => $value) {

uasort($value, 'h_sort_cmp');

}

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.