<?php
/**
* @author Raiden
* @copyright 2009
*/
$method = 'weblogUpdates.ping';
$parametre = array('SAYFA ADIN','http://www.siten.com');
$request = xmlrpc_encode_request($method,$parametre);
$context = stream_context_create(array('http' => array(
'method' => 'post',
'header' => 'Content-Type: text/xml;',
'content' => $request
)));
$sonuc = file_get_contents('http://rpc.technorati.com/rpc/ping',false,$context);
if (xmlrpc_is_fault($sonuc))
{
echo '<pre>';
print_r($sonuc);
}
else
{
echo '<pre>';
print_r($sonuc);
}
?>