>  기사  >  백엔드 개발  >  brew 安装xhprof失败,请问怎么解决

brew 安装xhprof失败,请问怎么解决

WBOY
WBOY원래의
2016-06-06 20:38:581089검색

如下:

<code>brew install php56-xhprof
==> Installing php56-xhprof from homebrew/homebrew-php
==> Downloading https://github.com/facebook/xhprof/archive/254eb24dcfa763c76c57b472093ebc4b81af2b7d.tar.gz
######################################################################## 100.0%
==> Patching
Error: Unable to guess PHP branch for Formulary::Formulae::Php56Xhprof
</code>

回复内容:

如下:

<code>brew install php56-xhprof
==> Installing php56-xhprof from homebrew/homebrew-php
==> Downloading https://github.com/facebook/xhprof/archive/254eb24dcfa763c76c57b472093ebc4b81af2b7d.tar.gz
######################################################################## 100.0%
==> Patching
Error: Unable to guess PHP branch for Formulary::Formulae::Php56Xhprof
</code>

应该是PHP版本有问题,homebrew-php的源码,你尝试安装一下5.3+的版本。

<code>def php_branch
    class_name = self.class.name.split("::").last
    matches = /^Php5([3-9]+)/.match(class_name)
    if matches
      "5." + matches[1]
    else
      raise "Unable to guess PHP branch for #{class_name}"
    end
  end
</code>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.