public function Process::getOutput

Returns the current output of the process (STDOUT).

@api

Return value

string The process output

1 call to Process::getOutput()
Process::getIncrementalOutput in drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php
Returns the output incrementally.

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php, line 510

Class

Process
Process is a thin wrapper around proc_* functions to ease start independent PHP processes.

Namespace

Symfony\Component\Process

Code

public function getOutput() {
  $this
    ->updateOutput();
  return $this->stdout;
}