If you see the above example carefully you will find that the unset() function didn't reindex the array after deleting the value from the numeric array (line no-8). To fix this you can use the array_splice() function. It takes three parameters: an array, offset (where to start), and length (number of elements to be removed). Let's see how it actually works:
Use the PHP
unset()FunctionIf you want to delete an element from an array you can simply use the
unset()function.The following example shows how to delete an element from an associative array and numeric array.
If you see the above example carefully you will find that the unset() function didn't reindex the array after deleting the value from the numeric array (line no-8). To fix this you can use the array_splice() function. It takes three parameters: an array, offset (where to start), and length (number of elements to be removed). Let's see how it actually works:
need an explanation for this answer? contact us directly to get an explanation for this answer