pingo
Ping Multiple Websites
'http://www.google.com/ping?sitemap=', 'Bing' => 'https://ping.bing.com/ping?sitemap=', 'Yahoo' => 'https://search.yahoo.com/ping?sitemap=', 'Yandex' => 'http://ping.blogs.yandex.ru/ping', 'Pingomatic' => 'http://rpc.pingomatic.com/' ]; $results = []; foreach ($pingServices as $service => $pingUrl) { // Attempt to ping the URL via the ping service $pingResult = @file_get_contents($pingUrl . urlencode($url)); // Suppress errors with @ // Check the response if ($pingResult === false) { $results[$service] = "Error pinging {$service}"; } else { $results[$service] = "Pinged successfully to {$service}"; } } return $results; } ?>Ping Results:
$result): ?>Results for
$message): ?>:
Comments
Post a Comment