PHP DevPHP经验分享首页投稿(暂停使用,暂停投稿)

Mac OS X El Capitan 配置PHP环境

2016-06-26  本文已影响182人  Stone_Zhuo

要配置的PHP环境是Apache,PHP和MySQL的软件组合,由Apache提供服务,MySQL提供数据库支持,PHP作为开发语言,在此基础上开发人员可以进行PHP脚本的编写与运行。

在Mac OS X中,Apache是自带的,只需要对其进行配置,让它能够支持PHP的运行就可以了。具体步骤如下:

sudo su -

这样就可以以root用户的角色来执行之后的命令,以此来保证每条命令的执行都不会有权限问题。

apachectl start

可以打开浏览器,访问localhost来判断Apache是否已经正常启动。

cd /etc/apache2/
vim httpd.conf

找到Apache以模块方式加载PHP的配置,如下:

#LoadModule php5_module libexec/apache2/libphp5.so

把前面的#去掉,如下:

LoadModule php5_module libexec/apache2/libphp5.so

因为Apache默认的文档目录在/Library/WebServer/Documents,所以需要根据实际情况来决定是否修改该配置。如果修改的话在httpd.conf中找到DocumentRoot,将值改为需要的值,同时需要修改的是DocumentRoot对应的Directory,以我本地为例:

DocumentRoot "/Users/betterzfz/sites"
<Directory "/Users/betterzfz/sites">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options FollowSymLinks Multiviews
    MultiviewsMatch Any

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

2 重启Apache

apachectl restart

3 在项目目录中创建文件index.php,内容如下:

<?php
    phpinfo();

4 打开浏览器访问http://localhost/index.php,如能看到PHP的信息则表示已经配置成功。
5可以继续配置Apache让访问http://localhost/时就能默认访问目录下的index.php,配置如下:

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

记住需要重启Apache,否则新的配置不会生效。

安装MySQL,到MySQL官网下载,按照Mac OS下DMG安装包的安装流程安装MySQL。安装完成后,用户root会得到一个为空的默认密码。正常情况下MySQL会被安装到/usr/local/mysql目录下,为了方便使用MySQL命令,可以将/usr/local/mysql/bin加到PATH:

export PATH=/usr/local/mysql/bin:$PATH

这样就可以在任意目录下使用MySQL命令了。

MySQL安装好后就可以用PHP对其进行连接了,修改index.php为如下内容:

<?php
    $mysqli = new mysqli('localhost', 'root', '');
    if ($mysqli->connect_error) {
            die('connect error('.$mysqli->connect_errno.')'.$mysqli->connect_error);
    }
    echo 'success... '.$mysqli->host_info;
    $mysqli->close();

刷新http://localhost/index.php后将得到下图显示的内容:

PHP连接MySQL.png

如果连接没有成功则需要根据提示进行相应的调整了。

windows下安装教程可以参考php初级讲义2-环境的安装与配置

本文首发于公众号:programmer_cc,转载请注明出处。


微信公众号.jpg
上一篇下一篇

猜你喜欢

热点阅读