ID: 12199
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Feature/Change Request
Operating System: Any
PHP Version: 4.0.6
New Comment:

Fixed in CVS by Zeev on August 2. Thanks!

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

[2001-07-17 05:51:50] [EMAIL PROTECTED]

Currently include_once() returns 1 the first time a file is included and NULL the 
second time (when the file is already included) but NULL is also returned if an error 
occurs when including the file (file not found, parse error etc).

I´d like include_once() to return 1 or even better, TRUE, if the file was succesfully 
included or if it´s already included and FALSE if an error occured.

<?php
// Returns 1, evaluates to TRUE
if(include_once('myfile.php')) {
        echo "SUCCESS\n";
}
else {
        echo "FAILURE\n";
}

// Returns NULL, evaluates to FALSE
if(include_once('myfile.php')) {
        echo "SUCCESS\n";
}
else {
        echo "FAILURE\n";
}
?>

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



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


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to