1

我需要在整个代码中多次包含对另一个 php 文件 example.php 的引用,但我得到“PHP 致命错误:无法重新声明类错误”。

<?php include 'example.php'; ?>

如何做到这一点?

4

1 回答 1

5

将其更改为:

<?php include_once 'example.php'; ?>

如果您的 example.php 包含一个类和其他代码,请将其分成一个文件用于该类,另一个文件用于您要多次执行的代码。然后在调用上述代码的页面中,您可以编写:

<?php include_once 'exampleClass.php'; ?>
<?php include 'exampleCode.php'; ?>
<?php include 'exampleCode.php'; ?>
于 2013-03-02T06:43:40.897 回答