php代码:
<?php /** * Baiapt.class.php 百度移动终端适配类 * * @copyright widuu * @license http://www.widuu.com * @lastmodify 2013-5-30 */ class Baiapt{ private $client_id; //百度应用 duapp.com中申请添加应用 就可以获得API Key private $client_secret; //对应的Secret Key private $grant_type = 'client_credentials'; private $token; function __construct($client_id,$client_secret){ $this -> client_id = $client_id; $this -> client_secret = $client_secret; $this -> token = $this ->gettoken(); } //封装的https的post方法获得返回参数 private function post($url,$post,$header="Content-type: text/xml"){ $ch = curl_init($url); curl_setopt($ch ,CURLOPT_HEADER, $header); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); if(is_array($post)){ $post = http_build_query($post ,'','&'); } curl_setopt($ch, CURLOPT_POSTFIELDS, $post); $content = curl_exec($ch); curl_close($ch); return $content; } //获取token的方法 private function gettoken(){ $post = array( 'grant_type' =>$this->grant_type, 'client_id' =>$this->client_id, 'client_secret' =>$this->client_secret, ); $result = $this->post('https://openapi.baidu.com/oauth/2.0/token',$post); $token = json_decode($result)->access_token; return $token; } /** * 识别手机和客户端 * * @param string $useragent 获取的浏览器类型$_SERVER['HTTP_USER_AGENT']获得 * @return 手机和电脑 $pc == 1是手机 2是电脑 */ public function Pcphone($useragent){ $data = array( 'access_token' =>$this->token, 'lcid'=>'miad', 'user_agent'=>$useragent, ); $result = $this->post('https://openapi.baidu.com/rest/2.0/wise/adapt',$data); $pc = json_decode($result)->device_type; if($pc == 1){ return "手机"; }else{ return "电脑"; } } } $pc = new Baiapt('wlNdR8VdDc1ZCiQfdG8TWNoY','idDM8IFCKK0IhQHSTgKb3m9dKwzNdttK'); //输入百度的应用的api 和key就可以了 echo $pc->Pcphone($_SERVER['HTTP_USER_AGENT']); //1是手机 2是电脑
陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章
R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前By尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前By尊渡假赌尊渡假赌尊渡假赌
擊敗分裂小說需要多長時間?
3 週前ByDDD
R.E.P.O.保存文件位置:在哪里以及如何保護它?
3 週前ByDDD

熱工具

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

SublimeText3 Linux新版
SublimeText3 Linux最新版

記事本++7.3.1
好用且免費的程式碼編輯器

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能

禪工作室 13.0.1
強大的PHP整合開發環境