!DOCTYPE htmlhtmlhead title查询域名授权titleheadbody form method=get action= input type=text name=url placeholder=请输入域名 input type=submit value=查询 form php ifisset$_GETurl
<?php
if(isset($_POST['url'])){
$url = $_POST['url'];
$file = 'sq.php'; // 替换为需要访问的PHP文件
// 读取文件内容
$content = file_get_contents($file);
// 检查是否存在授权域名
if(strpos($content, $url) !== false){
echo '该域名已正版授权。';
} else {
echo '该域名未授权。';
}
}
?>
原文地址: https://www.cveoy.top/t/topic/i3yu 著作权归作者所有。请勿转载和采集!