|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-13 05:58 UTC] nick at macaw dot demon dot co dot uk
[2002-10-13 09:27 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 01:00:01 2025 UTC |
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'; ?>