Elazığlı çalışanı aşağıda.
<?php
$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);
$sonuc = xmlrpc_decode($sonuc);
if (xmlrpc_is_fault($sonuc))
{
echo '<pre>';
print_r($sonuc);
}
else
{
echo '<pre>';
print_r($sonuc);
}
?>