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


PHP Process::isPtySupported方法代碼示例

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


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

示例1: getDescriptors

 public function getDescriptors()
 {
     if ($this->disableOutput) {
         $nullstream = fopen('/dev/null', 'c');
         return array(array('pipe', 'r'), $nullstream, $nullstream);
     }
     if ($this->ttyMode) {
         return array(array('file', '/dev/tty', 'r'), array('file', '/dev/tty', 'w'), array('file', '/dev/tty', 'w'));
     }
     if ($this->ptyMode && Process::isPtySupported()) {
         return array(array('pty'), array('pty'), array('pty'));
     }
     return array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
 }
開發者ID:VicDeo,項目名稱:poc,代碼行數:14,代碼來源:UnixPipes.php

示例2: getDescriptors

 /**
  * Returns an array of descriptors for the use of proc_open.
  *
  * @return array
  */
 public function getDescriptors()
 {
     if ($this->disableOutput) {
         $nullstream = fopen(defined('PHP_WINDOWS_VERSION_BUILD') ? 'NUL' : '/dev/null', 'c');
         return array(array('pipe', 'r'), $nullstream, $nullstream);
     }
     if ($this->useFiles) {
         // We're not using pipe on Windows platform as it hangs (https://bugs.php.net/bug.php?id=51800)
         // We're not using file handles as it can produce corrupted output https://bugs.php.net/bug.php?id=65650
         // So we redirect output within the commandline and pass the nul device to the process
         return array(array('pipe', 'r'), array('file', 'NUL', 'w'), array('file', 'NUL', 'w'));
     }
     if ($this->ttyMode) {
         return array(array('file', '/dev/tty', 'r'), array('file', '/dev/tty', 'w'), array('file', '/dev/tty', 'w'));
     } elseif ($this->ptyMode && Process::isPtySupported()) {
         return array(array('pty'), array('pty'), array('pty'));
     }
     return array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
 }
開發者ID:anthrotech,項目名稱:laravel_sample,代碼行數:24,代碼來源:ProcessPipes.php

示例3: testPTYCommand

 public function testPTYCommand()
 {
     if (!Process::isPtySupported()) {
         $this->markTestSkipped('PTY is not supported on this operating system.');
     }
     $process = $this->getProcess('echo "foo"');
     $process->setPty(true);
     $process->run();
     $this->assertSame(Process::STATUS_TERMINATED, $process->getStatus());
     $this->assertEquals("foo\r\n", $process->getOutput());
 }
開發者ID:Ener-Getick,項目名稱:symfony,代碼行數:11,代碼來源:ProcessTest.php

示例4: getDescriptors

 /**
  * Returns an array of descriptors for the use of proc_open.
  *
  * @return array
  */
 public function getDescriptors()
 {
     if ($this->useFiles) {
         return array(array('pipe', 'r'), $this->fileHandles[Process::STDOUT], array('pipe', 'w'));
     }
     if ($this->ttyMode) {
         return array(array('file', '/dev/tty', 'r'), array('file', '/dev/tty', 'w'), array('file', '/dev/tty', 'w'));
     } elseif ($this->ptyMode && Process::isPtySupported()) {
         return array(array('pty'), array('pty'), array('pty'));
     }
     return array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
 }
開發者ID:romainneutron,項目名稱:symfony,代碼行數:17,代碼來源:ProcessPipes.php


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