日期:2014-05-17  浏览次数:20481 次

QQ登录OAuth2.0 php接入类

?

/**
? *
? * qq登录
? * @author http://www.heui.org
? *
? */
class Oauth_qq
{
?? private static $_instance ;
?? private $config = array ();
?
?? private function __construct( $config )
?? {
???? $this ->Oauth_qq( $config );
?? }
?
?? public static function getInstance( $config )
?? {
???? if (!isset(self:: $_instance ))
???? {
?????? $c = __CLASS__ ;
?????? self:: $_instance = new $c ( $config );
???? }