gpt4 book ai didi

php - 包含,需要语法错误文件

转载 作者:行者123 更新时间:2023-12-03 08:03:53 29 4
gpt4 key购买 nike

我想问一下我是否可以要求/包含一个语法错误的文件,如果不能,则require/include返回一个值,这样我就知道所需/包含的文件存在语法错误并且不能被要求/包含?

file.php语法错误

include('file.php')
if (not file.php included because of syntax)
this
else
that

最佳答案

如果您真的想要这种功能。

您可以尝试使用nikics php parser来查看是否可以成功解析文件。

$code = file_get_contents('yourFile.php');

$parser = new PhpParser\Parser(new PhpParser\Lexer\Emulative);

try {
$stmts = $parser->parse($code);
// $stmts is an array of statement nodes
// file can be successfully included!
} catch (PhpParser\Error $e) {
// cannot parse file!
echo 'Parse Error: ', $e->getMessage();
}

关于php - 包含,需要语法错误文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30942520/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com