php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #12199 Bad return value from include_once()
Submitted: 2001-07-17 05:51 UTC Modified: 2001-08-08 10:22 UTC
From: marten at ditt dot as Assigned:
Status: Closed Package: Feature/Change Request
PHP Version: 4.0.6 OS: Any
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
43 - 2 = ?
Subscribe to this entry?

 
 [2001-07-17 05:51 UTC] marten at ditt dot as
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";
}
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-08 10:22 UTC] marten at ditt dot as
Fixed in CVS by Zeev on August 2. Thanks!
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 21:01:36 2024 UTC