Skip to content

Instantly share code, notes, and snippets.

@ariews
Created March 13, 2013 15:51
Show Gist options
  • Save ariews/5153445 to your computer and use it in GitHub Desktop.
Save ariews/5153445 to your computer and use it in GitHub Desktop.
<?php
$sitename = 'Log Channel!'; // title atau nama web
$url = 'http://arie.malam.or.id'; // alamat web
$feed_url = 'http://arie.malam.or.id/feed.atom'; // alamat feed
$client = new Zend_XmlRpc_Client('alamat_ping_server');
try {
$respon = $client->call('weblogUpdates.extendedPing', array(
$sitename, $url, $feed_url
));
} catch (Exceptio $e) {
// error: $e->getMessage();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment