Voting

: min(seven, two)?
(Example: nine)

The Note You're Voting On

php at stock-consulting dot com
18 years ago
To find out the currently set time limit, use

<?php
ini_get
('max_execution_time');
?>

If set_time_limit has been previously called in the script, the result will be the value which was passed to set_time_limit (and not, as the function name "ini_get" appears to suggest, the value from the php.ini file).

<< Back to user notes page

To Top