Export to GitHub

rolling-curl - issue #16

The same conditional is being checked twice inthe same statement in function rolling_curl(...) - sizeof()/count()


Posted on Oct 26, 2010 by Happy Wombat

Hi,

There seems to be an erroneous (duplicated) check on the same conditional value in "function rolling_curl(...)" in the RollingCurl class.

// start a new request (it's important to do this before removing the old one) if ($i < sizeof($this->requests) && isset($this->requests[$i]) && $i < count($this->requests)) {...}

$i < sizeof($this->requests)

and...

$i < count($this->requests)

are aliases of each other, and therefore will track each other with identical values (they are the same variables, only using alias names)

q.v. http://php.net/manual/en/function.sizeof.php In PHP, sizeof() is just an alias for the true function, which is count()

REQUEST: If this is indeed considered erroneous;

please remove "$i < sizeof($this->requests)" from the above mentioned conditional statement in function rolling_curl

Additionally renaming each sizeof(..) to count(...) would make the code a little more semantic when reading it.

Many Thanks,

Mark S.

Status: New

Labels:
Type-Defect Priority-Medium