您好,登錄后才能下訂單哦!
這篇文章主要介紹了計算機網絡中微信如何創建自定義目錄,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
微信創建自定義目錄的方法實例
//創建自定義菜單 private function create_menu($access_token){ //echo $access_token;exit; $url="https://api.weixin.qq.com/cgi-bin/menu/create?access_token=".$access_token; $post_data='{ "button":[ { "name":"PHP", "sub_button":[ { "type":"view", "name":"ThinkPHP", "url":"http://wap.phplee.com" }, { "type":"view", "name":"微信", "url":"http://wap.phplee.com/" } ] }, { "name":"運維", "sub_button":[ { "type":"view", "name":"Linux", "url":"http://wap.phplee.com" }, { "type":"view", "name":"MySQL", "url":"http://wap.phplee.com" } ] }, { "name":"APP", "sub_button":[ { "type":"view", "name":"Android", "url":"http://wap.phplee.com/" }, { "type":"view", "name":"IOS", "url":"http://wap.phplee.com/" }] }] }'; $header [] = "content-type: application/json; charset=UTF-8"; $ch = curl_init (); curl_setopt ( $ch, CURLOPT_URL, $url ); //請求的方式是post curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" ); // 禁用后cURL將終止從服務端進行驗證 curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE ); //不檢查證書 curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE ); //發送頭部字段 curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header ); //告訴對方 自己的瀏覽器型號 curl_setopt ( $ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)' ); //即表示自動進行跳轉抓取(如果URL發生了302重定向)繼續抓取 curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 ); //自動重定向開啟 curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 ); //發送的post參數 curl_setopt ( $ch, CURLOPT_POSTFIELDS, $post_data); //得到的結果不顯示在屏幕上,作為變量結果儲存 curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true ); $res = curl_exec ( $ch ); //如果運行錯誤,返回一個錯誤號 $flat = curl_errno ( $ch ); if ($flat) { $data = curl_error ( $ch ); } curl_close ( $ch ); //拿到了返回結果后json格式轉化為可以使用的數組格式 $res = json_decode ( $res, true ); if($res['errcode']==0){ return true; }else{ return false; } }
使用:
//微信測試 public function Index() { //獲取access_token if(S('access_token')){ $access_token=S('access_token'); }else{ $access_token=$this->get_access_token(); S('access_token',$access_token); } //echo $access_token;exit; //創建菜單 $result=$this->create_menu($access_token); if($result===false){ echo '創建菜單失敗';exit; }else{ echo '創建菜單成功';exit; } }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“計算機網絡中微信如何創建自定義目錄”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。