alexia\mar\tests::getPHPBinaryPath PHP 메소드

getPHPBinaryPath() 공개 메소드

Return the PHP binary location.
public getPHPBinaryPath ( ) : string
리턴 string PHP binary location.
    public function getPHPBinaryPath()
    {
        $binary = 'php';
        if ($this->php !== null) {
            $binary = $this->php;
        }
        return $binary;
    }