php网页调用微信扫码实现扫码录入完整实例

cs.php
<?php
header("Content-type:text/html;charset=utf-8");
error_reporting(0);
$a=$_GET["a"];
$pici=$_GET["pici"];
require_once "jssdk.php";
$jssdk = new JSSDK("你的公众号AppID", "你的公众号AppSecret");
$signPackage = $jssdk->GetSignPackage();
?>
<!DOCTYPE>
<html>
<head>
	<meta name="viewport" content="width=320.1,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
	<link rel="stylesheet" href="style.css"/>
	<script src="http://res.wx.qq.com/open/js/jweixin-1.1.0.js"> </script>
	<script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
</head>
<body>
	<input type="text" name="" value="<?php echo $pici?>">
	<input type="text" name="" value="<?php echo $a?>">
	<button class="btn btn_primary" id="scanQRCode1">扫码</button>

	<script type="text/javascript">
		wx.config({
    debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    appId: '<?php echo $signPackage["appId"];?>',
    timestamp: '<?php echo $signPackage["timestamp"];?>',
    nonceStr: '<?php echo $signPackage["nonceStr"];?>',
    signature: '<?php echo $signPackage["signature"];?>',
    jsApiList: ['checkJsApi',
                  'scanQRCode'// 微信扫一扫接口
               ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
           });

		wx.ready(function(){
			wx.hideOptionMenu();
			document.querySelector('#scanQRCode1').onclick = function () {
				wx.scanQRCode({
					needResult: 1,
					desc: 'scanQRCode desc',
					success: function (res) {
						str=JSON.stringify(res);
						str = str.substr(0, str.indexOf('","e'));
						str=str.substring(14);
						var pici="<?php echo $pici;?>"
						location.href='你的域名+路径/cs.php?pici='+pici+ '&a=' + str;
					}
				});
			};

		});
 //初始化jsapi接口 状态
 wx.error(function (res) {
 	alert("调用微信jsapi返回的状态:"+res.errMsg);
 });
</script>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值