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


PHP WhatsProt::sendBroadcastMessage方法代碼示例

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


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

$username = $argv[1];
$password = $argv[2];
$nickname = $argv[3];
$identity = $argv[4];
$method = $argv[5];
$args = $argv[6];
$targets = $argv[7];
echo "Username: " . $username . "\r\n";
echo "Password: " . $password . "\r\n";
echo "Nickname: " . $nickname . "\r\n";
echo "Identity: " . $identity . "\r\n";
echo "Method: " . $method . "\r\n";
echo "Args: " . $args . "\r\n";
$w = new WhatsProt($username, $identity, $nickname, true);
$w->connect();
$w->loginWithPassword($password);
if ($method == "sendStatusUpdate") {
    echo "About to send status update.\r\n";
    $w->sendStatusUpdate($args);
} elseif ($method == "sendProfilePicture") {
    echo "About to send profile picture.\r\n";
    $w->sendSetProfilePicture($args);
} elseif ($method == "broadcastMessage") {
    $targets = explode(",", $targets);
    echo "About to broadcast a message.\r\n" . print_r($targets) . "\r\n";
    $w->sendBroadcastMessage($targets, $args);
} elseif ($method == "sendBroadcastImage") {
    $targets = explode(",", $targets);
    $w->sendBroadcastImage($targets, $args, false);
}
sleep(5);
開發者ID:sadiqhirani,項目名稱:whatsapinet,代碼行數:31,代碼來源:broadcast.php

示例3: explode

    //Ziele und Nachricht wurde eingegeben
    $targetArray = explode(";", $targets);
    //echo 'Ziel: '.var_dump($targetArray).'<br>';
    //echo 'Nachricht: '.$message.'<br>';
    // Create a instance of WhatsProt class.
    $w = new WhatsProt($username, $nickname, false, true);
    $w->connect();
    // Connect to WhatsApp network
    $w->loginWithPassword($password);
    // logging in with the password we got!
    if (isset($_FILES['image']) and !$_FILES['image']['error']) {
        $dir = 'images';
        //script muss schreibrechte haben (chmod 0777)
        $filename = $_FILES['image']['name'];
        $filename = strtolower($filename);
        move_uploaded_file($_FILES['image']['tmp_name'], $dir . "/" . $filename);
        $result = $w->sendBroadcastImage($targetArray, $dir . '/' . $filename, false, 0, "", $message);
        if (isset($result)) {
            echo "Bild wurde erfolgreich versendet!<br>";
        } else {
            echo "Bild konnte nicht versendet werden!<br>";
        }
    } else {
        $result = $w->sendBroadcastMessage($targetArray, $message);
        if (isset($result)) {
            echo "Nachricht wurde erfolgreich versendet!<br>";
        } else {
            echo "Nachricht konnte nicht versendet werden!<br>";
        }
    }
}
開發者ID:KreMat,項目名稱:whatsapp-broadcaster,代碼行數:31,代碼來源:whatsapp.php


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