从PHP中检索.htaccess登录名,可以使用以下代码:
$file = '.htaccess';
$content = file_get_contents($file);
$lines = explode("\n", $content);
foreach ($lines as $line) {
if (strpos($line, 'AuthUserFile') !== false) {
$authUserFile = trim(str_replace('AuthUserFile', '', $line));
} elseif (strpos($line, 'AuthName') !== false) {
$authName = trim(str_replace('AuthName', '', $line));
}
}
echo "登录名:" . $authName . "<br>";
echo "登录文件路径:" . $authUserFile;
这段代码会读取.htaccess文件的内容,然后逐行检查是否包含AuthUserFile和AuthName关键字,如果找到,则将登录名和登录文件路径保存在变量中,并在屏幕上显示出来。
领取专属 10元无门槛券
手把手带您无忧上云