)を使用するfile_exists(
と、常に false が返されます。しかし、ファイルは実際に存在し、require
. これは私のコードです:
// Creating dependency lists.
$data_dependency = array("mysql", "oracle", "postgresql", "sqlite", "access");
// Calling the dependecny files.
foreach ($data_dependency as $list) {
$list = "class.data.$list.php";
_system::debug("Calling required class $list ...");
if (file_exists($list)) {
include($list);
_system::debug("Calling $list was successfull.");
} else {
_system::debug("Calling $list was failed. Now we close the system load.");
exit("Calling $list was failed. Now we close the system load.");
}
}
ページを読み込むと、ページは常にexit()
. file_exists()
その理由は、関数が常に false を返すためだと思います。