I've used PHP very intensively, but I can't get this small thing:
Say i have an array...
<?
$arr = array('a','b','c');
?>
How do I delete 'b' from the array?
There's no built in function for it, at least I can't find it in the documentation.
There is a way to delete the first or the last entry. So a way to move a value to the end would also work.
Anyone have a good solution for this?