php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #66518 need some exceptions for php's include or require
Submitted: 2014-01-20 09:24 UTC Modified: 2021-09-22 16:34 UTC
Votes:3
Avg. Score:3.7 ± 1.9
Reproduced:1 of 2 (50.0%)
Same Version:0 (0.0%)
Same OS:1 (100.0%)
From: wolftankk at gmail dot com Assigned: cmb (profile)
Status: Wont fix Package: *General Issues
PHP Version: 5.5.8 OS: Linux
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 — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
39 - 38 = ?
Subscribe to this entry?

 
 [2014-01-20 09:24 UTC] wolftankk at gmail dot com
Description:
------------
Hi,
We use include or require method for including a script file, it needs some exceptions.
EX.
1. This file is not exists. (also I can use file_exists for checking it)
2. This script file syntax errors, if it use @include a file, it will shutdown.(for file cache)

Test script:
---------------
try {
  $data = include('test.cache.php');
} catch (Exception $e) {
  print($e->getMessage()); //throw file dont exists or syntax errors
} finally {
  $data = false;
}

if (!$data) {
//do something
} else {

}


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-09-22 16:34 UTC] cmb@php.net
-Status: Open +Status: Wont fix -Assigned To: +Assigned To: cmb
 [2021-09-22 16:34 UTC] cmb@php.net
This is unlikely to happen; at least not without an RFC[1].  Feel
free to pursue the RFC process! :)

[1] <https://wiki.php.net/rfc/howto>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 21:01:31 2024 UTC