当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP利用百度ai实现文本和图片审核

PHP利用百度ai实现文本和图片审核

2019年07月19日  | 移动技术网IT编程  | 我要评论

之前做平台内容发布审核都是自己构建一套违禁词库,在代码中利用词库判断用户发布的内容,现在可以使用百度ai api完成这个功能。接下来就简单说下怎么做吧:

首先打开百度ai 开发平台 注册一个账号:

注册账号,进入控制台

创建自己的应用,获取apikey 和秘钥

进入文档页 文本审核:

图像审核:

文档很详细,实现用户发布内容审核 图片审核还是很方便简单的。我没有使用官方的sdk,简单的整合了一下作为练手,以下是我简单的代码demo:

class sentive
{
  protected $accesstokenurl = 'https://aip.baidubce.com/oauth/2.0/token';//获取token url
  protected $texturl = 'https://aip.baidubce.com/rest/2.0/antispam/v2/spam';//文本审核url
  protected $imgurl = 'https://aip.baidubce.com/api/v1/solution/direct/img_censor';//图片审核url
  protected $avatarurl = 'https://aip.baidubce.com/rest/2.0/solution/v1/face_audit';//头像审核url

  protected $grant_type;

  protected $client_id;

  protected $client_secret;

  function __construct()
  {
    $this->grant_type = 'client_credentials';
    $this->client_id = 'xxx';//api key
    $this->client_secret = 'xxx';//secret key
  }

  static function request($url = '', $param = '')
  {
    if (empty($url) || empty($param)) {
      return false;
    }

    $posturl = $url;
    $curlpost = $param;
    $curl = curl_init();//初始化curl
    curl_setopt($curl, curlopt_url, $posturl);//抓取指定网页
    curl_setopt($curl, curlopt_header, 0);//设置header
    curl_setopt($curl, curlopt_returntransfer, 1);//要求结果为字符串且输出到屏幕上
    curl_setopt($curl, curlopt_post, 1);//post提交方式
    curl_setopt($curl, curlopt_postfields, $curlpost);
    $data = curl_exec($curl);//运行curl
    curl_close($curl);


    return $data;
  }

  static function request_post($url = '', $param = array(), $type)
  {
    if (empty($url) || empty($param)) {
      return false;
    }

    $posturl = $url;
    $curlpost = $param;
    $curl = curl_init();
    curl_setopt($curl, curlopt_url, $posturl);
    curl_setopt($curl, curlopt_header, 0);
    // 要求结果为字符串
    curl_setopt($curl, curlopt_returntransfer, 1);
    // post方式
    curl_setopt($curl, curlopt_post, 1);
    curl_setopt($curl, curlopt_ssl_verifypeer, false);
    curl_setopt($curl, curlopt_postfields, $curlpost);
    if ($type == "text") {
      curl_setopt($curl, curlopt_httpheader, array('content-type: application/x-www-form-urlencoded'));
    } else {
      curl_setopt($curl, curlopt_httpheader, array('content-type: application/json;charset=utf-8'));
    }
    curl_setopt($curl, curlinfo_header_out, true);
    $data = curl_exec($curl);
    $code = curl_getinfo($curl, curlinfo_http_code);

    if ($code === 0) {
      throw new \exception(curl_error($curl));
    }
    curl_close($curl);
    return $data;
  }

  //获取token
  public function gettoken()
  {
    new redis();
    $post_data['grant_type'] = $this->grant_type;
    $post_data['client_id'] = $this->client_id;
    $post_data['client_secret'] = $this->client_secret;
    $o = "";
    foreach ($post_data as $k => $v) {
      $o .= "$k=" . urlencode($v) . "&";
    }
    $post_data = substr($o, 0, -1);
    $res = self::request($this->accesstokenurl, $post_data);
    $redis->setkey("filtertoken", json_decode($res, true)['access_token']);
    return json_decode($res, true)['access_token'];
  }

  //文本审核
  public function textverify($data)
  {
    new redis();
    $token = $redis->get("filtertoken");
    if (empty($token)) {
      $token = $this->gettoken();
    }
    $curl = $this->texturl . "?access_token=" . $token;
    $result = self::request_post($curl, $data, "text");
    return json_decode($result, true);
  }

  //图片审核
  public function imgverify($img)
  {
    $redis = new redis();
    $token = $redis->get("filtertoken");
    if (empty($token)) {
      $token = $this->gettoken();
    }
    $curl = $this->imgurl . "?access_token=" . $token;
    $bodys = array(
      'image' => $img,
      'scenes' => array("ocr",
        "face", "public", "politician", "antiporn", "terror", "webimage", "disgust",
        'watermark')
    );
    $bodys = json_encode($bodys);
    $result = self::request_post($curl, $bodys, "img");
    return json_decode($result, true);
  }


  //头像审核
  public function avatarverify($img)
  {
    $redis = new redis();
    $token = $redis->get("filtertoken");
    if (empty($token)) {
      $token = $this->gettoken();
    }
    $curl = $this->avatarurl . "?access_token=" . $token;
    $bodys = array(
      "configid" => "1",
      "images" => $img
    );
    $result = self::request_post($curl, $bodys, "text");
    return json_decode($result, true);
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网