美文网首页PHP经验分享
Mac 配置 PhpStorm 运行环境

Mac 配置 PhpStorm 运行环境

作者: 董懂同学 | 来源:发表于2017-07-11 09:44 被阅读1383次

    1. 升级本机 PHP

    Mac 内置了 PHP ,但是 PHP 的版本过低,所以需要升级PHP

    查看本机 PHP版本

    $ php --version
    PHP 5.6.30 (cli) (built: Feb  7 2017 16:18:37) 
    Copyright (c) 1997-2016 The PHP Group
    Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
    

    可以看到本机内置的版本号是 5.6.30

    升级 PHP

    https://php-osx.liip.ch/#install 这里找到最新的安装包,并安装
    $ curl -s https://php-osx.liip.ch/install.sh | bash -s 7.1
    需要等待一段时间,可能有点慢。

    更改 PHP 路径

    $ export PATH=/usr/local/php5/bin:$PATH
    此时再查看 PHP 版本,可以看到,PHP 的版本已经变成了 7.1.4。

    $ php --version
    PHP 7.1.4 (cli) (built: May  6 2017 10:02:00) ( NTS )
    Copyright (c) 1997-2017 The PHP Group
    Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
        with Zend OPcache v7.1.4, Copyright (c) 1999-2017, by Zend Technologies
        with Xdebug v2.5.3, Copyright (c) 2002-2017, by Derick Rethans
    

    2. 配置 PhpStorm 运行环境

    配置 PhpStorm 运行环境
    通过 which 命令找到 PHP 的安装路径, 填写到如图所示的地方
    $ which php
    /usr/local/php5/bin/php
    

    3. 测试是否配置成功

    就像平时执行 HTML 那样,点击浏览器小图标运行 PHP ,如果 OK 则配置成功

    4. 参考资料

    1. 升级Mac自带的PHP版本
    2. MAC下通过XAMPP和PHPStorm配置PHP开发环境
    3. Configure PhpStorm Interpreters on Mac OS X

    相关文章

      网友评论

        本文标题:Mac 配置 PhpStorm 运行环境

        本文链接:https://www.haomeiwen.com/subject/afyphxtx.html