本文整理匯總了PHP中Akismet::get_ip_address方法的典型用法代碼示例。如果您正苦於以下問題:PHP Akismet::get_ip_address方法的具體用法?PHP Akismet::get_ip_address怎麽用?PHP Akismet::get_ip_address使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Akismet
的用法示例。
在下文中一共展示了Akismet::get_ip_address方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: sharing_email_check_for_spam_via_akismet
function sharing_email_check_for_spam_via_akismet($data)
{
if (!function_exists('akismet_http_post') && !method_exists('Akismet', 'http_post')) {
return $data;
}
// Prepare the body_request for akismet
$body_request = array('blog' => get_option('home'), 'permalink' => get_permalink($data['post']->ID), 'comment_type' => 'share', 'comment_author' => $data['name'], 'comment_author_email' => $data['source'], 'comment_content' => sharing_email_send_post_content($data), 'user_agent' => isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null);
if (method_exists('Akismet', 'http_post')) {
$body_request['user_ip'] = Akismet::get_ip_address();
$response = Akismet::http_post(build_query($body_request), 'comment-check');
} else {
global $akismet_api_host, $akismet_api_port;
$body_request['user_ip'] = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : null;
$response = akismet_http_post(build_query($body_request), $akismet_api_host, '/1.1/comment-check', $akismet_api_port);
}
// The Response is spam lets not send the email.
if (!empty($response) && isset($response[1]) && 'true' == trim($response[1])) {
// 'true' is spam
return false;
// don't send the email
}
return $data;
}
示例2: akismet_get_ip_address
function akismet_get_ip_address()
{
_deprecated_function(__FUNCTION__, '3.0', 'Akismet::get_ip_address()');
return Akismet::get_ip_address();
}
示例3: akismet_get_ip_address
function akismet_get_ip_address()
{
return Akismet::get_ip_address();
}
示例4: get_user_data
public function get_user_data()
{
return array('user_ip' => Akismet::get_ip_address(), 'user_agent' => isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null, 'referrer' => isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null, 'blog' => get_option('home'), 'blog_lang' => get_locale(), 'blog_charset' => get_option('blog_charset'));
}