ID: 19885 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: Scripting Engine problem Operating System: NT4 PHP Version: 4.2.1 New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2002-10-13 05:58:57] [EMAIL PROTECTED] In fact this is specific to threaded servers, such as Apache, and happens because the error is considered fatal. However the categorisation may be inappropriate because a script may have an appropriate handler to deal with all dl() failures, and not wish to have platform/server specific code. ------------------------------------------------------------------------ [2002-10-13 05:31:35] [EMAIL PROTECTED] Ok, so dl() doesn't yet work on windows and that's fine, but it should still be possible to call dl() on that platform and have no ill effects when suppressed with @. However, whilst the resultant error message is suppressed, script execution terminates. Suppression of other errors from dl() on Unix works as expected. Sniper: the following script will reproduce the problem. <? @dl('bug'); echo 'gub'; ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=19885&edit=1