在包含文件中遇到错误后跳转到下一个包含文件

时间:2015-10-06 07:22:58

标签: php php-include

我有一个主要的PHP文件,其中包含许多单独的文件,它们之间没有任何关系。

<?php
include_once 'test/test1.php';
include_once 'test/test2.php';
include_once 'test/test3.php';
include_once 'test/test4.php';
include_once 'test/test5.php';
include_once 'test/test6.php';
include_once 'test/test7.php';
?>

但是当我运行这个PHP文件时,我可能会在每个文件中遇到错误。如果主文件遇到任何错误,我想知道哪个代码是合适的。它不应该停止工作,而是跳转到下一个文件 我怎么能这样做?

0 个答案:

没有答案