ID: 49868
Updated by: [email protected]
Reported By: majkl578 at gmail dot com
Status: Open
Bug Type: Scripting Engine problem
Operating System: Linux Debian
PHP Version: 5.3SVN-2009-10-13 (snap)
New Comment:
See also bug #37306 max_execution_time = max_input_time
Previous Comments:
------------------------------------------------------------------------
[2009-10-13 17:41:55] majkl578 at gmail dot com
Description:
------------
PHP ignores the max_execution_time set in php.ini and sets (somehow
internally) it to the value of max_input_time. ini_get returns correct
values of both of these settings, but the script is halted after the
time set as max_input_time.
This bug affects PHP5.3RC1 and also the latest snapshot of PHP5.3.
It is probably similar to an old bug #37306.
Related php.ini values:
max_execution_time = 5
max_input_time = 10
Configure command:
./configure --prefix=/usr --sysconfdir=/etc --cache-file=./config.cache
--with-config-file-path=/etc/php
--with-config-file-scan-dir=/etc/php/extensions
--with-apxs2=/usr/bin/apxs2 --with-mysql --with-mysqli --with-curl
--with-sqlite --enable-sqlite-utf8 --with-gd --enable-mbstring
--with-openssl --disable-short-tags --with-mcrypt --with-bz2 --with-zlib
--enable-zip --with-xmlrpc --enable-soap --without-mssql --with-pgsql
--with-tidy --enable-debug --disable-posix --enable-exif --enable-ftp
--with-gettext --with-mhash --enable-pcntl --with-pspell
--enable-sockets --with-xsl --enable-cli --enable-calendar --disable-cgi
--enable-zend-multibyte
Reproduce code:
---------------
<?php
echo ini_get('max_execution_time'), ' | ', ini_get('max_input_time');
while(true);
Expected result:
----------------
5 | 10
Fatal error: Maximum execution time of 5 seconds exceeded in
/foo/bar.php on line 4
Actual result:
--------------
5 | 10
Fatal error: Maximum execution time of 10 seconds exceeded in
/foo/bar.php on line 4
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=49868&edit=1