Skip to content

Instantly share code, notes, and snippets.

@t0mm4rx
Created November 6, 2018 19:53
Show Gist options
  • Save t0mm4rx/82ca1c9695d95e768bdf75d79a480ec0 to your computer and use it in GitHub Desktop.
Save t0mm4rx/82ca1c9695d95e768bdf75d79a480ec0 to your computer and use it in GitHub Desktop.
$count = 0;
$targetY = 5;
for ($i = 0; $i < count($inputs); $i++) {
$first = $inputs[$i];
$second = $inputs[$i + 1];
if ($targetY >= $first && $targetY <= $second) {
$count++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment