ID:               19200
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Assigned
+Status:           Closed
 Bug Type:         Documentation problem
 Operating System: Linux 2.4.19
 PHP Version:      4CVS-2002-08-30
 Assigned To:      ilia
 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.

Made absolete by the change in CVS. dl() now returns E_WARNING and
fails when operating in a ZTS enviroment.


Previous Comments:
------------------------------------------------------------------------

[2002-08-30 13:04:56] [EMAIL PROTECTED]

so checkout the phpdoc and fix it :)

------------------------------------------------------------------------

[2002-08-30 12:47:30] [EMAIL PROTECTED]

The documentation mentions that dl() will fail with E_ERROR if
safe_mode is enabled or enable_dl is turned off. However, it does not
mention that if PHP is compiled with ZTS, dl() would also fail with
E_ERROR.
This means that if the user wants to handle dl() failure gracefuly
within their own script they must do the following check in their code,
before calling dl() function:

if( ini_get('safe_mode') || !ini_get('enable_dl') || ZEND_THREAD_SAFE )
{
echo "The dl() functionality is not avaliable<br />\n";
}

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=19200&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to