PHP проверьте, сколько времени потребуется функции для удаления
$start = microtime(true);
while (...) {
}
$time_elapsed_secs = microtime(true) - $start;
Fragile Fish
$start = microtime(true);
while (...) {
}
$time_elapsed_secs = microtime(true) - $start;