我很诚实。我几乎从来没有得到它如何正确使用“require_once”。 现在我正在尝试一件简单的事情:
PHP-Class EmergencyTicket.php:
<?php
require_once(dirname(__FILE__)."/../../classes/DB.php");
require_once __DIR__ . '/Ticket.php';
class EmergencyTicket extends Ticket {
(... code ...)
}
PHP-Class Ticket.php
<?php
class Ticket
{
(... code ...)
}
文件位于服务器上: 1)票证1:webservice / v1 / Ticket / EmergencyTicket.php 1)票证2:webservice / v1 / Ticket / Ticket.php
在Ticket2文件中,加载时收到以下错误消息:
Fatal error: Class 'Ticket' not found in /usr/www/users/kontug/api.medifaktor.de/webservice/v1/Ticket/EmergencyTicket.php on line 6
第6行是:
class EmergencyTicket extends Ticket {
我在文件夹中看到文件Ticket.php,我只是想扩展这个类,但似乎找不到文件。还有什么我可以检查的吗?
答案 0 :(得分:0)
由于您之前的示例中已经有过拼写错误,我非常怀疑这是一个很好的例子。
.php
扩展名。 Ticket1.php
,则不会发生错误消息,因为这会首先导致致命错误。你的来源很好,你得到错误的唯一原因是,如果有另一个名为Ticket1.php
的文件你也成功包含了,并且它没有那个类定义。< / p>
如果那不是您遇到的问题,那么您需要再次尝试使用真实的工作代码编写此问题。尝试简化你的东西并给我们一些我们可以在我们自己的系统上执行的东西。
例如,这对我有用:
<强> Ticket1.php 强>
<?php
class Ticket1 { }
?>
<强> Ticket2.php 强>
<?php
require_once 'Ticket1.php';
class Ticket2 extends Ticket1 { }
运行Ticket1.php
或Ticket2.php
不会给我带来任何错误。
你应该注意的一件事,它可能与你所包含的目录有关。
如果第三个脚本包含来自不同目录的Ticket2.php
,则会失败..因为PHP的当前目录始终是您启动的第一个脚本的目录。
要确保这不是您遇到的问题,请包含以下文件:
require_once __DIR__ . '/Ticket1.php';
__DIR__
是一个神奇的PHP常量,它始终包含您使用常量的文件目录的完整路径。
答案 1 :(得分:0)
检查出来:
require_once (__DIR__ . DIRECTORY_SEPARATOR . 'Ticket.php');
答案 2 :(得分:0)
需要文件时要记住的一些事项:
根据您列出的信息,#3似乎是您的问题。必须在子类声明之前加载父类。
让这更容易的好习惯:
快速检查(合理稳健):
/**
* Provided for documentor/apigen support.
* This function will attempt to load a file, and return information about
* failure if it cannot be found or is not readable. It will also by default
* avoid double inclusion to prevent redeclaration errors, though this can be
* configured to be ignored if required.
* NOTE: This function will mitigate common inclusion mistakes like duplicated or missing directory separators and file extensions.
* @param string $file The name of the file, may be the actual file or full path.
* @param string $dir (optional) The directory to check for the file. This param is best used with search functions that know the file name but not explicitly the directory, which allows for more robust usage elsewhere with minimal variable modification. This function can be used perfectly fine without it though.
* @param string $suffix (optional) The file suffix that will be checked for. This will be appended to your file, and defaults to .php. You must alter this parameter if you are searching for a different file type.
* @param boolean $nodup (optional) If true, will not include a file that has already been loaded to prevent class redeclaration errors. If false, will require the file regardless.
* @return boolean TRUE if file was included, FALSE if not included (NOTE: you may want to modify the return line in the catch block depending on your needs.)
*/
function _requireFile($file, $dir = NULL, $suffix = '.php', $nodup = TRUE) {
//this is not necessary in this example, but is generally good practice, and will prevent accidentally duplicated or missing extensions.
//This function assumes that it will be used frequently, and contains redundancies to mitigate common inclusion errors such as missing or duplicated extenstions, missing or duplicated directory separators, etc.
$file = ( ( isset($dir) ) ? rtrim($dir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR : NULL ) . rtrim($file, $suffix) . $suffix);
try {
if (!file_exists($file)) {
//the file does not exist at the specified location, throw an exception with information about the request.
throw new \Exception("File not found at: " . $file);
} elseif (file_exists($file) && !is_readable) {
//the file exists in the specified location, but cannot be read due to a file permission conflict. Throw an exception with information about the request and how to fix it.
throw new \Exception("File exists but is not readable at: " . $file . " <hr>You can correct this by using 'chmod 755 " . $file . "' from the command line.");
}
//This allows you to perform a duplication check to avoid class redeclaration errors. If you intend to include the file multiple times, pass the $nodup param as FALSE or 0 to ignore this check.
if (!$nodup == TRUE && in_array($file, get_included_files())) {
return FALSE;
} else {
//The file exists, is readable, and passed the no-duplication check, require the file. Note that require_once was intentionally not used to provide the option to require files multiple times if needed. If you are only ever going to use this for files that should not be redeclared, you can change this to require_once but it will really not make any appreciable difference.
require($file);
return TRUE;
}
} catch (\Exception $e) {
//You may want to use a logging function here rather than echoing to the screen. The echo statement is provided for quick debugging, but should not be used in production.
echo 'Error fetching file at ' . $e->getLine() . ' of ' . $e->getFile() . ': ' . $e->getMessage();
//you may want to rethrow the exception and catch it in the referencing method or function, kill the program, or otherwise mitigate errors here depending on your program structure. Non-essential files should not kill your program though.
return FALSE;
}
}
$file = "/path/to/file.php";
_requireFile($file);
//OR
$dir = "/path/to/";
$file = "/path/to/file.php";
_requireFile($file, $dir);
//OR
$dir = "/path/to/";
$file = "/path/to/file";
$suffix = ".php";
_requireFile($file, $dir, $suffix);
更好的方法:
答案 3 :(得分:0)
我遇到了同样的问题,我尝试使用 include('path/to/file.php')
而不是 require_once
。嗯,它只是有效。