I have two arrays in php that contain custom class objects. One I iterate through in a while loop, using $h, and the other I access through another variable, $i, inside the while loop for comparison. I only increment $i within the parent loop if a certain condition is met, and there may be multiple copies of the same object within the array, which I need to skip over.
My code looks as follows:
$h = 0;
$i = 0
$j = 10; // Number determined elsewhere but statically entered for example purposes
while ($h < $j)
{
if ($audits[$i]->id == $auditIDs[$h])
{
// Do Stuff...
do
{
$i++;
} while ($audits[$i]->id == $audits[$i+1]->id);
}
else
{
// Do stuff...
}
$h++;
}
If I replace the == comparison operator with === it still fails. Replace the do-while loop with a simple IF statement works, however.
if ($audits[$i]->id == $audits[$i+1]->id)
{
$i++;
}
But that code does not allow for the possibility of more than one duplicate in the array, which may or may not occur, and I have to increment $i manually before calling the if statement (it must be incremented at least once if the previous if statement evaluates to true).
Can anyone shed some light into the situation? I appreciate the help!
class auditItem
{
public $login;
public $points;
public $date;
public $onTime;
public $name;
public $id;
public $msg;
function auditItem($login, $points, $date, $name, $id, $msg)
{
$this->login = $login;
$this->points = $points;
$this->date = $date;
$this->name = $name;
$this->id = $id;
$this->msg = $msg;
}
}