SyntaxFix
Write A Post
Hire A Developer
Questions
Test it yourself, but here's the output.
php -r '$a=array("a","b","c"); print_r($a); unset($a[1]); print_r($a);' Array ( [0] => a [1] => b [2] => c ) Array ( [0] => a [2] => c )