|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-30 09:04 UTC] kalowsky@php.net
[2001-06-18 09:45 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 05:00:01 2025 UTC |
There is script. Replace sdczal in odbc_connect with any ODBC alias and PLC_CLHPRESS with any table from alias. <?php $db = odbc_connect("sdczal", "", ""); while(1){ $res = odbc_exec($db, "select * from PLC_CLHPRESS;"); }; odbc_close($db); ?> There is related directives from php.ini: max_execution_time = 10 ; Maximum execution time of each script, in seconds memory_limit = 50M ; Maximum amount of memory a script may consume (8MB) When execution time exceed PHP crash with Access violation.