Ver código fonte

Use command -v for checking for programs

tags/v0.8.1
itismadness 6 anos atrás
pai
commit
ec4d49f690
2 arquivos alterados com 6 adições e 3 exclusões
  1. +2
    -1
      src/Chardet.php
  2. +4
    -2
      src/Util.php

+ 2
- 1
src/Chardet.php Ver arquivo

@@ -15,11 +15,12 @@ class Chardet {
foreach ($this->executables as $executable) {
if (Util::commandExists($executable)) {
$this->executable = $executable;
break;
}
}

if ($this->executable === null) {
throw new \RuntimeException('Chardet not installed');
throw new \RuntimeException('chardet not installed');
}
}



+ 4
- 2
src/Util.php Ver arquivo

@@ -4,8 +4,10 @@ namespace OrpheusNET\Logchecker;

class Util {
public static function commandExists($cmd) {
$return = shell_exec(sprintf("which %s", escapeshellarg($cmd)));
return !empty($return);
$where = substr(strtolower(PHP_OS), 0, 3) === 'win' ? 'where' : 'command -v';

exec("{$where} {$cmd} 2>/dev/null", $output, $return_var);
return $return_var === 0;
}

public static function strposArray(string $haystack, array $needles) {


Carregando…
Cancelar
Salvar