|
Posted by Richard Davey on 10/13/04 11:19
Hello,
Tuesday, June 21, 2005, 1:33:55 PM, you wrote:
IG> I have an array- for example...
IG> What happens, say if I delete [3] => Purple? I get...
IG> But what if I want to reset the numbers? Like...
<?php
$array = array(0 => 'a', 1 => 'b', 2 => 'c', 3 => 'd', 4 => 'e');
print_r($array);
unset($array[3]);
print_r($array);
sort($array);
print_r($array);
?>
Best regards,
Richard Davey
--
http://www.launchcode.co.uk - PHP Development Services
"I do not fear computers. I fear the lack of them." - Isaac Asimov
Navigation:
[Reply to this message]
|