does anyone know an easy way to delete an element from a php array? I mean so that foreach($array) no longer includes that element. I thought that setting it to null would do it, but apparently not.
feedback
|
|
You use
| |||
|
feedback
|
|
It should be noted that
So
| |||||||||||
feedback
|
This is the output from the code above:
Now, array_values() will reindex a numerical array nicely, but will remove all key strings from the array and replace them with numbers. If you need to preserve the key names (strings), or reindex the array if all keys are numerical, use array_merge():
outputs
| ||||
|
feedback
|
|
Also, for a named element:
| |||||||||||
feedback
|
| |||
|
feedback
|