Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-31-2008, 10:32 PM   PM User | #1
kochier
Regular Coder

 
Join Date: Jul 2008
Posts: 136
Thanks: 18
Thanked 0 Times in 0 Posts
kochier is on a distinguished road
Lower Count In An Array

Basically I have an if statement that goes
PHP Code:
if ($cdate3 == $mdate2)
{

And I want it to lower the count of the array by 1 whenever they are equal
PHP Code:
if ($cdate3 == $mdate2)
{
count($arry)--;

However I'm not sure how to do this. Help is greatly appreciated.
kochier is offline   Reply With Quote
Old 07-31-2008, 10:40 PM   PM User | #2
oesxyl
Master Coder


 
Join Date: Dec 2007
Posts: 6,682
Thanks: 436
Thanked 890 Times in 879 Posts
oesxyl is a jewel in the roughoesxyl is a jewel in the roughoesxyl is a jewel in the rough
Quote:
Originally Posted by kochier View Post
Basically I have an if statement that goes
PHP Code:
if ($cdate3 == $mdate2)
{

And I want it to lower the count of the array by 1 whenever they are equal
PHP Code:
if ($cdate3 == $mdate2)
{
count($arry)--;

However I'm not sure how to do this. Help is greatly appreciated.
you want de remove a item from array each time the condition is true? first or last or don't matter?
PHP Code:
if($cdate3 == $mdate2){
    
array_pop($arry); // last removed, count decremented
    
array_shift($arry); // first removed, count will be decremented

regards
oesxyl is offline   Reply With Quote
Users who have thanked oesxyl for this post:
kochier (07-31-2008)
Old 07-31-2008, 10:47 PM   PM User | #3
kochier
Regular Coder

 
Join Date: Jul 2008
Posts: 136
Thanks: 18
Thanked 0 Times in 0 Posts
kochier is on a distinguished road
Thanks, works perfectly.
kochier is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:40 AM.


Advertisement
Log in to turn off these ads.