Home > Backend Development > PHP Tutorial > PHP WeChat sharing, QQ sharing

PHP WeChat sharing, QQ sharing

WBOY
Release: 2016-07-29 09:12:12
Original
1955 people have browsed it

http://ossweb-img.qq.com/images/js/WXJssdk.js">

//微信分享初始化
WXJssdk.init(function(wx){
        //分享到朋友
        wx.onMenuShareAppMessage({
            title:shareData.tTitle,
            desc:shareData.tContent,
            link:shareData.WXtimeLineLink+"?ADTAG=tgi.share.wx.message",
            imgUrl:shareData.imgUrl,
            success:function(){pgvSendClick({hottag:clickflow+'.share.message'});},
            cancel:function(){pgvSendClick({hottag:clickflow+'.share.message_cancel'});}
        });
        //分享到朋友圈
        wx.onMenuShareTimeline({
            title:shareData.tTitle,
            link:shareData.WXtimeLineLink+"?ADTAG=tgi.share.wx.timeline",
            imgUrl:shareData.imgUrl,
            success:function(){pgvSendClick({hottag:clickflow+'.share.timeline'});},
            cancel:function(){pgvSendClick({hottag:clickflow+'.share.timeline_cancel'});}
        });
        //分享到手Q
        wx.onMenuShareQQ({
            title:shareData.tTitle,
            desc:shareData.tContent,
            link:shareData.QQtimeLineLink+"?ADTAG=tgi.share.wx.qq",
            imgUrl:shareData.imgUrl,
            success:function(){pgvSendClick({hottag:clickflow+'.share.qq'});},
            cancel:function(){pgvSendClick({hottag:clickflow+'.share.qq_cancel'});}
        });
        //分享到QZone
        wx.onMenuShareQZone({
            title:shareData.tTitle,
            desc:shareData.tContent,
            link:shareData.QQtimeLineLink+"?ADTAG=tgi.share.wx.qzone",
            imgUrl:shareData.imgUrl,
            success:function(){pgvSendClick({hottag:clickflow+'.share.qzone'});},
            cancel:function(){pgvSendClick({hottag:clickflow+'.share.qzone_cancel'});}
        });
        //分享到微博(默认是不需要的,可根据情况使用)
        wx.onMenuShareWeibo({
            title:shareData.tTitle,
            desc:shareData.tContent,
            link:shareData.QQtimeLineLink+"?ADTAG=tgi.share.wx.weibo",
            imgUrl:shareData.imgUrl,
            success:function(){pgvSendClick({hottag:clickflow+'.share.weibo'});},
            cancel:function(){pgvSendClick({hottag:clickflow+'.share.weibo_cancel'});}
        });
    });
//手Q分享初始化
    mqq.data.setShareInfo({
        share_url: shareData.QQtimeLineLink+"?ADTAG=tgi.share.qq",
        title: shareData.tTitle,
        desc: shareData.tContent,
        image_url:shareData.imgUrl
        },
        function(){pgvSendClick({hottag:clickflow+'.share.qq'});}
    );

以上就介绍了PHP 微信分享,QQ分享,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template