PHP 跳转QQ聊天
Posted 司马东阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 跳转QQ聊天相关的知识,希望对你有一定的参考价值。
<?php
//iami
//5ime.cn
error_reporting(E_ALL || ~E_NOTICE); //禁止显示PHP错误信息
$qq=$_GET[‘qq‘]; //获取URL参数
$type =$_GET[‘type‘];
if ($type==‘‘)//默认电脑QQ跳转
{
$url=‘tencent://Message/?uin=‘.$qq;
}
else if ($type==‘pe‘)//安卓QQ跳转
{
$url=‘mqqwpa://im/chat?chat_type=wpa&uin=‘.$qq;
}
else if ($type==‘ios‘) //iosQQ跳转
{
$url=‘mqq://im/chat?chat_type=wpa&uin=‘.$qq.‘&version=1&src_type=web‘;
}
header("Location:{$url}");
?>
以上是关于PHP 跳转QQ聊天的主要内容,如果未能解决你的问题,请参考以下文章