微信瀏覽器的頁面在PC端訪問

微信瀏覽器的頁面在PC端訪問:php

普通的在微信瀏覽器看的頁面若是不在php代碼中解析一下,而後複製連接在PC打開就出現沒法訪問,由於它複製的地址是:html

因此須要在php代碼中解析:
 public function _before_index() {

        $this->getWeChat();

        if (is_null($_GET['openid']) && !is_null($_GET['code'])) {
            $info_array = get_user_info($this->appid , $this->secret , $_GET['code']);
            $this->redirect('index' , array('openid' => $info_array['openid']));
        }
         
    }

就是通常寫一個前置方法,而後調用getWeChat()進行解析。若是解析失敗須要本身根據控制器名,方法名進行拼裝:api

http://xxxxx.com/index.php?s=/wechat/Zwfw/index/openid/orMoot8M3THY3mXOQ_6B31zRiaAg瀏覽器

後面的openid能夠隨便填寫微信

相關文章
相關標籤/搜索