我正在尝试创建一个脚本,我可以为服务器状态(在线/离线)查找服务器,例如:Teamspeek,Minecraft等。
我找到了这个脚本:
<?php
function getStatus($ip,$port){
$socket = @fsockopen($ip, $port, $errorNo, $errorStr, 3);
if(!$socket) return "offline";
else return "online";
}
echo getStatus("server.com", "80");
?>
但是我不必更改服务器名称和端口,而是从mysql数据库中获取它。 所以我已经做到了,但我的问题是:我无法将字符串连接到脚本。 获取字符串的我的代码如下所示:
<?php
// Check to see the URL variable is set and that it exists in the database
if (isset($_GET['id'])) {
// Connect to the MySQL database
include "connect_mysql.php";
$id = preg_replace('#[^0-9]#i', '', $_GET['id']);
// Use this var to check to see if this ID exists, if yes then get the product
// details, if no then exit this script and give message why
$sql = mysql_query("SELECT * FROM servers WHERE id='$id' LIMIT 1");
$productCount = mysql_num_rows($sql); // count the output amount
if ($productCount > 0) {
// get all the product details
while($row = mysql_fetch_array($sql)){
$id = $row["id"];
$ip = $row["ip"];
$port = $row["port"];
$getit = $row["getit"];
$name = $row["name"];
$content = $row["content"];
}
} else {
echo "That item does not exist.";
exit();
}
}
?>
所以我想我可以将echo getStatus("server.com", "80");
更改为echo getStatus("$ip", "$port");
但这不起作用。
有没有人知道我要做什么?
答案 0 :(得分:0)
首先要做的事情。使用mysqli_而不是mysql。
其次,如果你将结果限制为1,那么你不需要while循环。
现在,当您在获取方法中获得 id 时,您可以在数据库中查看并获取详细信息:
从数据库中获取详细信息后,您必须触发 getStatus()函数。
if ($productCount == 1){
echo getStatus($row["ip"],$row["port"]);
} else {
echo "That item does not exist.";
}