gpt4 book ai didi

php - 如何检查特定文件是否在 php 项目和 linux 环境中使用

转载 作者:行者123 更新时间:2023-12-03 09:51:04 25 4
gpt4 key购买 nike

目前我想检查php项目中是否使用了特定的文件

$target = "foobar.php";
$ beUsed = checkFile($target);

function checkFile($target){
//code to check be here
if (beUsed) return true;
return false;
}

感谢阅读,如有任何帮助,我们将不胜感激

最佳答案

你可以使用linux命令

$target = "foobar.php";

searchFile($target);


function searchFile($target){
$file_name = basename(__FILE__);

$cmd = sprintf("grep -r --exclude='%s' %s ./* ",$file_name, $target);

$res = exec($cmd);

if($res){
echo "Exists!" . PHP_EOL;

print_r($res);

return true;
}

return false;
}

关于php - 如何检查特定文件是否在 php 项目和 linux 环境中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62507477/

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