Jump to content

[SOLVED] How to delete last element of associative array - unset?


tvance929

Recommended Posts

Sorry to be a bother --- I just found out that I could get the last element of an associative array via the end() function.

 

thats great...the reason I was getting that was because I wanted to see if the incoming number was higher than that last number (I have already sorted)...

 

Now I am stuck on my next step and that is Killing that element if it is lower than the incoming one.

 

 

my stab was this:

elseif ($score > end($scoresArray))

{

unset(end($scoresArray));

}

but that broke.  :'(  any help?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.