Heim php教程 PHP源码 移动适配识别手机和电脑的类-百度终端适配封装类

移动适配识别手机和电脑的类-百度终端适配封装类

May 25, 2016 pm 05:04 PM

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 = &#39;client_credentials&#39;;
	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 ,&#39;&#39;,&#39;&&#39;);
 		}
 		curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
 		$content = curl_exec($ch);
 		curl_close($ch);
 		return $content;
 	}
 	
	//获取token的方法
 	private function gettoken(){
 		$post = array(
 			&#39;grant_type&#39; =>$this->grant_type,
 			&#39;client_id&#39; =>$this->client_id,
 			&#39;client_secret&#39; =>$this->client_secret,
 		);
 		$result = $this->post(&#39;https://openapi.baidu.com/oauth/2.0/token&#39;,$post);
 		$token = json_decode($result)->access_token;
 		return $token;
 	}
 	 
	/**
	 * 识别手机和客户端
	 * 
	 * @param string $useragent 获取的浏览器类型$_SERVER[&#39;HTTP_USER_AGENT&#39;]获得
	 * @return 手机和电脑 $pc == 1是手机 2是电脑
	 */
 	 public function Pcphone($useragent){
 		 $data = array(
 				 &#39;access_token&#39; =>$this->token,
 				 &#39;lcid&#39;=>&#39;miad&#39;,
 				 &#39;user_agent&#39;=>$useragent,
 		 );
 		 $result = $this->post(&#39;https://openapi.baidu.com/rest/2.0/wise/adapt&#39;,$data);
 	   	 $pc = json_decode($result)->device_type;
		 if($pc == 1){
			return "手机";
		 }else{
			return "电脑";
		 }
 	 }
 }

 $pc = new Baiapt(&#39;wlNdR8VdDc1ZCiQfdG8TWNoY&#39;,&#39;idDM8IFCKK0IhQHSTgKb3m9dKwzNdttK&#39;);  //输入百度的应用的api 和key就可以了
 echo $pc->Pcphone($_SERVER[&#39;HTTP_USER_AGENT&#39;]); //1是手机 2是电脑
Nach dem Login kopieren
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
2 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
Repo: Wie man Teamkollegen wiederbelebt
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Abenteuer: Wie man riesige Samen bekommt
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)