Lines Matching +full:run +full:- +full:script
17 * PhpProcess runs a PHP script in an independent process.
20 * $p->run();
21 * print $p->getOutput()."\n";
28 * @param string $script The PHP script to run (as a string)
34 …public function __construct($script, $cwd = null, array $env = null, $timeout = 60, array $options… argument
37 if (false === $php = $executableFinder->find(false)) {
40 $php = array_merge([$php], $executableFinder->findArguments());
44 file_put_contents($file, $script);
47 $script = null;
53 parent::__construct($php, $cwd, $env, $script, $timeout, $options);
61 $this->setCommandLine($php);
69 if (null === $this->getCommandLine()) {