PHP macOS Sierra 10.12.3 上的 7.1 - 由 Homebrew 安装

PHP 7.1 on macOS Sierra 10.12.3 - installed by Homebrew

我刚刚用 Homebrew 安装了 PHP 7.1,当我在终端 $ sudo apachectl restart 中输入 return 这条消息时 AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 10.3.1.156. Set the 'ServerName' directive globally to suppress this message 但一切似乎都运行良好.

phpinfo();returns正常结果...

php artisan serve return 不同 URL。 http://127.0.0.1:8000 而不是 http://localhost:8000...

PHP安装步骤:

brew tap homebrew/dupes

brew tap homebrew/versions

brew tap homebrew/homebrew-php

brew install php71 --with-httpd24

在 httpd 文件中:

LoadModule php7_module /usr/local/opt/php71/libexec/apache2/libphp7.so

<IfModule php7_module>
 AddType application/x-httpd-php .php
 AddType application/x-httpd-php-source .phps

 <IfModule dir_module>
  DirectoryIndex index.html index.php
 </IfModule>
</IfModule>

我应该怎么做才能避免出现此错误消息?

我怎样才能从 Laravel 取回 URL http://localhost:8000

好的,我发现如果我将 ServerName localhost 添加到 httpd.conf(在这条路径 /usr/local/etc/apache2/2.4/httpd.conf 上)警告消失了 - 谢谢安德鲁

但是 laravel 仍然是 return 127.0.0.1...有什么想法吗? PHP 7 在 Mac 上的安装是否正确?

安装后 PHP 7 brew install php71 --with-httpd24 运行 此命令 brew unlink httpd24 然后在 macOS Apache (/etc/apache2/httpd.conf) 上编辑 httpd.conf。 ..