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


PHP Call::create方法代码示例

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


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

示例1: callParty

 /**
  * Add another to a call bridge
  *
  * @param caller -> PhoneNumber
  * @param callee -> PhoneNumber
  * @param args -> Call's arguments (see in function)
  */
 public function callParty($caller, $callee, $args)
 {
     $new_call = Call::create($caller, $callee, $this->id, $args);
     $this->calls++;
     return Constructor::Make($this, $data->get());
 }
开发者ID:robtro,项目名称:php-bandwidth,代码行数:13,代码来源:Bridge.php

示例2: doCreateCall

 /**
  * The call factory
  *
  * @param   string  $cmd        The command string to be executed
  * @param   string  $path       The working directory
  * @return  Call
  */
 protected function doCreateCall($cmd, $path)
 {
     return Call::create($cmd, $path);
 }
开发者ID:teqneers,项目名称:php-stream-wrapper-for-git,代码行数:11,代码来源:Binary.php

示例3: createGitCall

 /**
  * Create a call to the Git binary for later execution
  *
  * @param   string  $path           The full path to the Git repository
  * @param   string  $command        The Git command, e.g. show, commit or add
  * @param   array   $arguments      The command arguments
  * @return  Call
  */
 public function createGitCall($path, $command, array $arguments)
 {
     $handleArg = function ($key, $value) {
         $key = ltrim($key, '-');
         if (strlen($key) == 1 || is_numeric($key)) {
             $arg = sprintf('-%s', escapeshellarg($key));
             if ($value !== null) {
                 $arg .= ' ' . escapeshellarg($value);
             }
         } else {
             $arg = sprintf('--%s', escapeshellarg($key));
             if ($value !== null) {
                 $arg .= '=' . escapeshellarg($value);
             }
         }
         return $arg;
     };
     if (!self::isWindows()) {
         $binary = escapeshellcmd($this->path);
     } else {
         $binary = $this->path;
     }
     if (!empty($command)) {
         $command = escapeshellarg($command);
     }
     $args = array();
     $files = array();
     $fileMode = false;
     foreach ($arguments as $k => $v) {
         if ($v === '--' || $k === '--') {
             $fileMode = true;
             continue;
         }
         if (is_int($k)) {
             if (strpos($v, '-') === 0) {
                 $args[] = $handleArg($v, null);
             } else {
                 if ($fileMode) {
                     $files[] = escapeshellarg($v);
                 } else {
                     $args[] = escapeshellarg($v);
                 }
             }
         } else {
             if (strpos($k, '-') === 0) {
                 $args[] = $handleArg($k, $v);
             }
         }
     }
     $cmd = trim(sprintf('%s %s %s', $binary, $command, implode(' ', $args)));
     if (count($files) > 0) {
         $cmd .= ' -- ' . implode(' ', $files);
     }
     $call = Call::create($cmd, $path);
     return $call;
 }
开发者ID:awwong1,项目名称:esps-wpsite,代码行数:64,代码来源:Binary.php


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