PhpExecutableFinder.php 2.3KB

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. if ($php = getenv('PHP_BINARY')) {
  34. if (!is_executable($php)) {
  35. return false;
  36. }
  37. return $php;
  38. }
  39. $args = $this->findArguments();
  40. $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
  41. // PHP_BINARY return the current sapi executable
  42. if (PHP_BINARY && \in_array(PHP_SAPI, array('cli', 'cli-server', 'phpdbg'), true)) {
  43. return PHP_BINARY.$args;
  44. }
  45. if ($php = getenv('PHP_PATH')) {
  46. if (!@is_executable($php)) {
  47. return false;
  48. }
  49. return $php;
  50. }
  51. if ($php = getenv('PHP_PEAR_PHP_BIN')) {
  52. if (@is_executable($php)) {
  53. return $php;
  54. }
  55. }
  56. if (@is_executable($php = PHP_BINDIR.('\\' === DIRECTORY_SEPARATOR ? '\\php.exe' : '/php'))) {
  57. return $php;
  58. }
  59. $dirs = array(PHP_BINDIR);
  60. if ('\\' === DIRECTORY_SEPARATOR) {
  61. $dirs[] = 'C:\xampp\php\\';
  62. }
  63. return $this->executableFinder->find('php', false, $dirs);
  64. }
  65. /**
  66. * Finds the PHP executable arguments.
  67. *
  68. * @return array The PHP executable arguments
  69. */
  70. public function findArguments()
  71. {
  72. $arguments = array();
  73. if ('phpdbg' === PHP_SAPI) {
  74. $arguments[] = '-qrr';
  75. }
  76. return $arguments;
  77. }
  78. }