ポートチェッカーを動的イメージで動作させるようにしましたが、サーバーがオフラインの場合に悪いエラーが発生します。
画像が小さすぎる: http://3nerds1site.com/test/finalimage.php?ip=blacknscape.no-ip.biz&port=80
これはどのように見えるべきかですが、オンラインの場合にのみ機能しますか?
しかし、とにかく私のコードは、ホストゲーターである私のウェブホストのコードの問題だとは思いませんか?
<?php
$ip = $_GET["ip"];
$port = $_GET["port"];
$online = "Online";
$offline = "Offline";
$status = fsockopen($ip, $port) ? $online : $offline;
// Create a blank image and add some text
$im = imagecreatetruecolor(215, 86);
$text_color = imagecolorallocate($im, 233, 14, 91);
// sets background to Light Blue
$LightBlue = imagecolorallocate($im, 95, 172, 230);
imagefill($im, 0, 0, $LightBlue);
//Server Information
imagestring($im, 7, 5, 5, '3Nerds1Site.com', $text_color);
imagestring($im, 2, 40, 30, $ip, $text_color);
imagestring($im, 2, 40, 40, $port, $text_color);
imagestring($im, 2, 40, 70, $status, $text_color);
// Set the content type header - in this case image/jpeg
header('Content-Type: image/png');
// Output the image
imagepng($im);
// Free up memory
imagedestroy($im);
?>