当前位置: 首页>>代码示例>>PHP>>正文


PHP SoapClient::send方法代码示例

本文整理汇总了PHP中SoapClient::send方法的典型用法代码示例。如果您正苦于以下问题:PHP SoapClient::send方法的具体用法?PHP SoapClient::send怎么用?PHP SoapClient::send使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SoapClient的用法示例。


在下文中一共展示了SoapClient::send方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: SendSMS

 public function SendSMS()
 {
     $client = new SoapClient($this->wsdl_link);
     $result = $client->send($this->username, $this->password, array(array('number' => implode(",", $this->to))), $this->from, $this->msg);
     if ($result) {
         $this->InsertToDB($this->from, $this->msg, $this->to);
         $this->Hook('wp_sms_send', $result);
     }
     return $result[0]['id'];
 }
开发者ID:jekv,项目名称:devia,代码行数:10,代码来源:irsmsland.class.php

示例2: SendSMS

 public function SendSMS()
 {
     $client = new SoapClient($this->wsdl_link);
     foreach ($this->to as $items) {
         $to[] = array('number' => $items);
     }
     $result = $client->send($this->username, $this->password, $to, $this->from, $this->msg);
     if ($result) {
         $this->InsertToDB($this->from, $this->msg, $this->to);
         $this->Hook('wp_sms_send', $result);
     }
     return $result;
 }
开发者ID:QoboLtd,项目名称:wp-sms,代码行数:13,代码来源:spadbs.class.php

示例3: SendSMS

 public function SendSMS()
 {
     // Check credit for the gateway
     if (!$this->GetCredit()) {
         return;
     }
     /**
      * Modify sender number
      *
      * @since 3.4
      * @param string $this->from sender number.
      */
     $this->from = apply_filters('wp_sms_from', $this->from);
     /**
      * Modify Receiver number
      *
      * @since 3.4
      * @param array $this->to receiver number
      */
     $this->to = apply_filters('wp_sms_to', $this->to);
     /**
      * Modify text message
      *
      * @since 3.4
      * @param string $this->msg text message.
      */
     $this->msg = apply_filters('wp_sms_msg', $this->msg);
     $client = new SoapClient($this->wsdl_link);
     foreach ($this->to as $items) {
         $to[] = array('number' => $items);
     }
     $result = $client->send($this->username, $this->password, $to, $this->from, $this->msg);
     if ($result) {
         $this->InsertToDB($this->from, $this->msg, $this->to);
         /**
          * Run hook after send sms.
          *
          * @since 2.4
          * @param string $result result output.
          */
         do_action('wp_sms_send', $result);
         return $result;
     }
 }
开发者ID:veronalabs,项目名称:wp-sms,代码行数:44,代码来源:spadbs.class.php

示例4: header

     $_SESSION['error']['nowallet'] = true;
     header('Location:index.php');
     die;
 } else {
     $_SESSION['user']['wallet'] = trim($_POST['wallet']);
     $user = User_id($_SESSION['user']['wallet']);
     $_SESSION['user']['uid'] = $user['uid'];
     $_SESSION['user']['refid'] = $user['refid'];
     $_SESSION['user']['plnum'] = $user['plnum'];
 }
 $solvemedia_response = solvemedia_check_answer($verkey, $_SERVER["REMOTE_ADDR"], $_POST['adcopy_challenge'], $_POST['adcopy_response'], $hashkey);
 if ($solvemedia_response->is_valid) {
     global $apiurl, $apicode;
     $client = new SoapClient($apiurl);
     $prize = chance_creator($rewards);
     $response = $client->send($apicode, $_SESSION['user']['wallet'], $prize, 1);
     if ($response['status'] > 0) {
         $wait = $now + $setinterval * 60;
         $db->query("update tbl_user set `reset`='{$wait}',playnum=playnum+1,earn=earn+'{$prize}',ip='{$ip}' where user_id='" . $_SESSION['user']['uid'] . "'");
         $_SESSION['user']['succ'] = $prize;
         if ($_SESSION['user']['refid']) {
             $refearn = floor($prize * $ref_percent / 100);
             $db2->queryres("select wallet from tbl_user where user_id='" . $_SESSION['user']['refid'] . "'");
             $response = $client->send($apicode, $db2->res['wallet'], $refearn, 2, 'Referral earnings.');
         }
         unset($_SESSION['error']);
         unset($_SESSION['prize']);
     } else {
         $_SESSION['error']['epay'] = true;
     }
     $amount_bb = $client->balance($apicode, $_SESSION['user']['wallet']);
开发者ID:mdominoni,项目名称:simple_faucet,代码行数:31,代码来源:index.php

示例5: SoapClient

<?php

require_once "maincore.php";
$client = new SoapClient($apiurl);
$db->query("select user_id,wallet,ref_pending from tbl_user where ref_pending>='{$reflimit}' order by ref_pending desc");
while ($res = $db->fetchArray()) {
    $response = $client->send($apicode, $res['wallet'], $res['ref_pending'], 2, 'Referral earnings.');
    if ($response['status'] > 0) {
        $db2->query("update tbl_user set ref_pending=0 where user_id='" . $res['user_id'] . "'");
    }
}
开发者ID:mdominoni,项目名称:simple_faucet,代码行数:11,代码来源:cron.php

示例6: SoapClient

<?php

$client = new SoapClient('http://api.epay.info/?wsdl');
// Send a normal prize
$response = $client->send($apicode, $user_wallet, $amount_to_send, 1);
// Send a refferal earning
$response = $client->send($apicode, $user_wallet, $amount_to_send, 2, 'Referral earnings.');
/****
$response['status'] is greater than 0 that means transaction was successful
***/
开发者ID:epayinfo,项目名称:faucet_api,代码行数:10,代码来源:send.php


注:本文中的SoapClient::send方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。