當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WhatsProt::sendBroadcastLocation方法代碼示例

本文整理匯總了PHP中WhatsProt::sendBroadcastLocation方法的典型用法代碼示例。如果您正苦於以下問題:PHP WhatsProt::sendBroadcastLocation方法的具體用法?PHP WhatsProt::sendBroadcastLocation怎麽用?PHP WhatsProt::sendBroadcastLocation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WhatsProt的用法示例。


在下文中一共展示了WhatsProt::sendBroadcastLocation方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: sendBroadcast

 /**
  * Sends a broadcast Message to a group of contacts.
  *
  * Currenly only sends a normal message to
  * a group of contacts.
  *
  * @param $toNumbers
  * @param $message
  * @param $type
  * @return array|null|string
  */
 public function sendBroadcast($toNumbers, $message, $type)
 {
     $this->connectToWhatsApp();
     $messagesId = array();
     if ($type === self::MESSAGE_TYPE_TEXT) {
         $messagesId = $this->wa->sendBroadcastMessage($toNumbers, $message);
     }
     if ($type === self::MESSAGE_TYPE_IMAGE) {
         $messagesId = $this->wa->sendBroadcastImage($toNumbers, $message);
     }
     if ($type === self::MESSAGE_TYPE_AUDIO) {
         $messagesId = $this->wa->sendBroadcastAudio($toNumbers, $message);
     }
     if ($type === self::MESSAGE_TYPE_VIDEO) {
         $messagesId = $this->wa->sendBroadcastVideo($toNumbers, $message);
     }
     if ($type === self::MESSAGE_TYPE_LOCATION) {
         $messagesId = $this->wa->sendBroadcastLocation($toNumbers, $message['userlong'], $message['userlat'], $message['locationname'], null);
     }
     return $messagesId;
 }
開發者ID:djade007,項目名稱:WhatsApp,代碼行數:32,代碼來源:WhatsAppApi.php

示例2: send_whatsapp_msg

 public function send_whatsapp_msg()
 {
     if (!empty($_FILES['image']['name'][0])) {
         $this->upload_files('image');
         exit;
     }
     if (!empty($_FILES['audio']['name'][0])) {
         $this->upload_files('audio');
     }
     if (!empty($_FILES['video']['name'][0])) {
         $this->upload_files('video');
         exit;
     }
     if ($this->input->post('doSend')) {
         require_once 'business_services/whatsapp/vendor/autoload.php';
         $username = $this->config->item('WhatsAppNumber');
         //Mobile Phone prefixed with country code so for india it will be 91xxxxxxxx
         $password = $this->config->item('WhatsAppPassword');
         $w = new WhatsProt($username, 'Mahajyothis', "Mahajyothis", true);
         //Name your application by replacing "WhatsApp Messaging"
         $w->connect();
         $w->loginWithPassword($password);
         $target = $this->input->post('reciepient');
         //Target Phone,reciever phone
         $message = $this->input->post('message');
         $location = $this->input->post('location');
         $latitude = $this->input->post('latitude');
         $longitude = $this->input->post('longitude');
         $w->SendPresenceSubscription($target);
         //Let us first send presence to user
         if ($latitude && $longitude) {
             $w->sendBroadcastLocation($target, $latitude, $longitude, $location);
             // Send Location
         }
         if ($message) {
             $w->sendMessage($target, $message);
         }
         // Send Message
         $this->send_files($w, $target);
         echo json_decode(1);
         exit;
     }
 }
開發者ID:Mahajyothis,項目名稱:Version1.0-Git,代碼行數:43,代碼來源:Business.php


注:本文中的WhatsProt::sendBroadcastLocation方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。