PhpProcess.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Process;
  11. use Symfony\Component\Process\Exception\RuntimeException;
  12. /**
  13. * PhpProcess runs a PHP script in an independent process.
  14. *
  15. * $p = new PhpProcess('<?php echo "foo"; ?>');
  16. * $p->run();
  17. * print $p->getOutput()."\n";
  18. *
  19. * @author Fabien Potencier <fabien@symfony.com>
  20. */
  21. class PhpProcess extends Process
  22. {
  23. /**
  24. * Constructor.
  25. *
  26. * @param string $script The PHP script to run (as a string)
  27. * @param string|null $cwd The working directory or null to use the working dir of the current PHP process
  28. * @param array|null $env The environment variables or null to use the same environment as the current PHP process
  29. * @param int $timeout The timeout in seconds
  30. * @param array $options An array of options for proc_open
  31. */
  32. public function __construct($script, $cwd = null, array $env = null, $timeout = 60, array $options = null)
  33. {
  34. $executableFinder = new PhpExecutableFinder();
  35. if (false === $php = $executableFinder->find(false)) {
  36. $php = null;
  37. } else {
  38. $php = array_merge(array($php), $executableFinder->findArguments());
  39. }
  40. if ('phpdbg' === PHP_SAPI) {
  41. $file = tempnam(sys_get_temp_dir(), 'dbg');
  42. file_put_contents($file, $script);
  43. register_shutdown_function('unlink', $file);
  44. $php[] = $file;
  45. $script = null;
  46. }
  47. if (null !== $options) {
  48. @trigger_error(sprintf('The $options parameter of the %s constructor is deprecated since version 3.3 and will be removed in 4.0.', __CLASS__), E_USER_DEPRECATED);
  49. }
  50. parent::__construct($php, $cwd, $env, $script, $timeout, $options);
  51. }
  52. /**
  53. * Sets the path to the PHP binary to use.
  54. */
  55. public function setPhpBinary($php)
  56. {
  57. $this->setCommandLine($php);
  58. }
  59. /**
  60. * {@inheritdoc}
  61. */
  62. public function start(callable $callback = null/*, array $env = array()*/)
  63. {
  64. if (null === $this->getCommandLine()) {
  65. throw new RuntimeException('Unable to find the PHP executable.');
  66. }
  67. $env = 1 < func_num_args() ? func_get_arg(1) : null;
  68. parent::start($callback, $env);
  69. }
  70. }