當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Akismet::get_ip_address方法代碼示例

本文整理匯總了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;
}
開發者ID:JSpier,項目名稱:smacamp,代碼行數:23,代碼來源:sharedaddy.php

示例2: akismet_get_ip_address

function akismet_get_ip_address()
{
    _deprecated_function(__FUNCTION__, '3.0', 'Akismet::get_ip_address()');
    return Akismet::get_ip_address();
}
開發者ID:Didox,項目名稱:beminfinito,代碼行數:5,代碼來源:wrapper.php

示例3: akismet_get_ip_address

function akismet_get_ip_address()
{
    return Akismet::get_ip_address();
}
開發者ID:TheHiddenHaku,項目名稱:fuzzy-waddle,代碼行數:4,代碼來源:wrapper.php

示例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'));
 }
開發者ID:sabdev1,項目名稱:ljcdevsab,代碼行數:4,代碼來源:class-akismet-wrapper.php


注:本文中的Akismet::get_ip_address方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。