I have a array with many UNIX timestamps and want for example get the timestamps, which are from the last e.g. 10 minutes.
To be more precise I only need the count, likely for a Bot protection.
Should I do it with a for loop and check if the UNIX timestamp + 600 is smaller than the current timestamp? Or is there a better way to do so?