I have a problem on PHP. I want to create a timeout error after a fixed delay (stop an execution after a maximum time). I use set_time_limit for that.
I use this script for the test :
<?php
set_time_limit(1);
sleep(10);
echo "END";
But this page does not display a Timeout error. It displays "END" !