Jump to content

Order Array


silkfire

Recommended Posts

Can someone guide me on the most effective way of doing this?

 

1. I got an array where some keys have a specified numeric key.

2. I want to sort this array in such a way that those elements without a specified numeric key must get a key. If it exists, then increment.

 

Before:

array(1 => 'val1', 4 => 'valY', 'valX', 'valZ', 'valN');

 

After:

array(0 => 'valX', 1 => 'val1', 2 => 'valZ', 3 => 'valN', 4 => 'valY');

 

 

 

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/269219-order-array/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.