本文整理汇总了PHP中xmlrpc_client::call方法的典型用法代码示例。如果您正苦于以下问题:PHP xmlrpc_client::call方法的具体用法?PHP xmlrpc_client::call怎么用?PHP xmlrpc_client::call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xmlrpc_client
的用法示例。
在下文中一共展示了xmlrpc_client::call方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: punct
return $text;
}
//returns an error sentence if the ratio of punctuation characters to alphanumeric characters is >4
function punct($text)
{
$numAlpha = 0;
preg_match_all("/\\w/", $text, $numAlpha);
$numPunct = 0;
preg_match_all("/\\p{P}\\p{S}/", $text, $numPunct);
if ((count($numAlpha[0]) + 1) / (count($numPunct[0]) + 1) < 4.0) {
$text = "Too much punctuation, please try again.";
}
return $text;
}
// $data = file_get_contents("php://input");
echo $_POST['firstname'];
// $data = json_decode($data, TRUE);
// echo $data;
// $text = sanitize($data['firstname']);
// echo $text;
$rpc = "http://localhost:8082";
$client = new xmlrpc_client($rpc, true);
$resp = $client->call('sample.rain', array($_POST['firstname']));
echo $resp;
//$jsonres = json_decode(sanitize_text($resp));
//echo json_encode($jsonres);
?>
</body>
</html>