PhpExecutableFinder.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. /**
  12. * An executable finder specifically designed for the PHP executable.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  16. */
  17. class PhpExecutableFinder
  18. {
  19. private $executableFinder;
  20. public function __construct()
  21. {
  22. $this->executableFinder = new ExecutableFinder();
  23. }
  24. /**
  25. * Finds The PHP executable.
  26. *
  27. * @param bool $includeArgs Whether or not include command arguments
  28. *
  29. * @return string|false The PHP executable path or false if it cannot be found
  30. */
  31. public function find($includeArgs = true)
  32. {
  33. $args = $this->findArguments();
  34. $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
  35. // HHVM support
  36. if (\defined('HHVM_VERSION')) {
  37. return (getenv('PHP_BINARY') ?: PHP_BINARY).$args;
  38. }
  39. // PHP_BINARY return the current sapi executable
  40. if (\defined('PHP_BINARY') && PHP_BINARY && \in_array(\PHP_SAPI, array('cli', 'cli-server', 'phpdbg'), true)) {
  41. return PHP_BINARY.$args;
  42. }
  43. if ($php = getenv('PHP_PATH')) {
  44. if (!@is_executable($php)) {
  45. return false;
  46. }
  47. return $php;
  48. }
  49. if ($php = getenv('PHP_PEAR_PHP_BIN')) {
  50. if (@is_executable($php)) {
  51. return $php;
  52. }
  53. }
  54. if (@is_executable($php = PHP_BINDIR.('\\' === \DIRECTORY_SEPARATOR ? '\\php.exe' : '/php'))) {
  55. return $php;
  56. }
  57. $dirs = array(PHP_BINDIR);
  58. if ('\\' === \DIRECTORY_SEPARATOR) {
  59. $dirs[] = 'C:\xampp\php\\';
  60. }
  61. return $this->executableFinder->find('php', false, $dirs);
  62. }
  63. /**
  64. * Finds the PHP executable arguments.
  65. *
  66. * @return array The PHP executable arguments
  67. */
  68. public function findArguments()
  69. {
  70. $arguments = array();
  71. if (\defined('HHVM_VERSION')) {
  72. $arguments[] = '--php';
  73. } elseif ('phpdbg' === \PHP_SAPI) {
  74. $arguments[] = '-qrr';
  75. }
  76. return $arguments;
  77. }
  78. }