Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在整个代码中多次包含对另一个 php 文件 example.php 的引用,但我得到“PHP 致命错误:无法重新声明类错误”。
<?php include 'example.php'; ?>
如何做到这一点?
将其更改为:
<?php include_once 'example.php'; ?>
如果您的 example.php 包含一个类和其他代码,请将其分成一个文件用于该类,另一个文件用于您要多次执行的代码。然后在调用上述代码的页面中,您可以编写:
<?php include_once 'exampleClass.php'; ?> <?php include 'exampleCode.php'; ?> <?php include 'exampleCode.php'; ?>