http://ru.php.net/manual/ru/function.set-time-limit.php
Взволновало следующее:
The set_time_limit() function and the configuration directive max_execution_time only affect the execution time of the script itself. Any time spent on activity that happens outside the execution of the script such as system calls using system(), stream operations, database queries, etc. is not included when determining the maximum time that the script has been running.
Получается, что реальное время исполнения скрипта может быть сущщественно больше заявленного в set_time_limit(). Правильно ли я понял? Если правильно, то нет ли в доке лажи? Что-то мне слабо представяется возможность реализации этого.