I am storing values in an array using the push function. The first value in array is being stored at 4 element instead of first element. For instance, after storing values when I print first element $array[1] it prints space/nothing but when I print the fourth element $array[4] it prints the first value. Any suggestions on how to remove unwanted values in beginning of array?
|
|
|||||||||||
|
|
You can remove elements from the front of an array with the 'shift' operator. But I think the problem is deeper than that and you're looking at it the wrong way. If you are storing unknown, 'unwanted' values in an array, you need to figure out where and why that is happening and prevent it, not just bypass those to find what you are looking for. |
|||
|
|
… but it would be better to avoid putting "crap" values onto the array in the first place. |
|||
|
|
How are you creating the array? Using my amazing powers of ESP, I'm going to guess that you have a You have a bit of an XY problem here. You're asking us how to implement a solution you've already chosen rather than letting us actually fix the problem. |
|||
|
|
|
If you want to eliminate all unwanted values:
However, as pointed out by David Dorward, this eliminates unwanted values from the middle of the array as well. To get rid of only the values at the beginning, you can use
Output:
Update: My hunch seems to have been wrong:
Results:
|
|||||||
|