「PHP开发APP接口实战001」开发环境搭建

这一章主要讲解如何快速搭建Phalcon本地开发运行环境的方法

材料准备

  • Windows 10
  • VisualNMP v7.0 下载
    • Nginx
    • Mysql
    • PHP 5.6
    • Memcached
  • Phalcon 3.3.1 官网

VisualNMP下载及安装

  1. 我们使用的是 VisualNMP v7.0 (x64)
    直达下载

  2. 待下载完成,打开安装程序,跟着提示一步步安装。
    默认安装路径:D:\Visual-NMP-x64

  3. 安装完成后,需要重新启动电脑。
    然后在浏览器打开:http://127.0.0.1:20080/, 当你看到以下内容,恭喜你,安装成功了。

    「PHP开发APP接口实战001」开发环境搭建_第1张图片

  4. 打开VisualNMP软件,可以任意切换PHP版本。如图:
    「PHP开发APP接口实战001」开发环境搭建_第2张图片

我这里选择的是 php-5.6.32-nts-x64
请记住你的选择,在安装Phalcon时需要用到。
选择版本后,会自动下载并安装相应的PHP运行包。
物理路径:[VisualNMP安装路径]\Bin\PHP

Phalcon下载及安装

  1. 下载Phalcon 3.3.1
    下载地址:https://github.com/phalcon/cphalcon/releases/tag/v3.3.1。
    我们需要下载与前面先择PHP版本(php-5.6.32-nts-x64)相一致的DLL文件。
    直达下载

  2. 安装
    第一步:待下载完成,解压压缩包。将 php_phalcon.dll 复制到PHP扩展包目录([VisualNMP安装路径]\Bin\PHP\php-5.6.32-nts-x64\ext)下。
    第二步:打开VisualNMP软件,修改 php.ini 文件,添加以下代码, 保存并重启:

extension=php_phalcon.dll

如图:
「PHP开发APP接口实战001」开发环境搭建_第3张图片
  1. 验证安装是否成功
    在浏览器打开:http://127.0.0.1:20080/phpinfo.php , 找到以前内容,恭喜你安装成功了。
    「PHP开发APP接口实战001」开发环境搭建_第4张图片

站点配置

  1. 项目初始代码
    百度网盘地址:https://pan.baidu.com/s/1sm4fdHb
    密码:qj7n

  2. 打开VisualNMP软件,修改 nginx.conf 文件, 添加以下代码:

    server {
        #sitename    API Demo
        listen       20081;
        server_name  localhost;

        # D:/Fox/Demo/API/ 是项目代码根目录,请根据实际情况,自行更改
        root         "D:/Fox/Demo/API/public";
        
        # D:/Visual-NMP-x64/ 是VisualNMP安装路径,请根据实际情况,自行更改
        error_log    "D:/Visual-NMP-x64/logs/Nginx/API-Demo-error.log";
        access_log   "D:/Visual-NMP-x64/logs/Nginx/API-Demo-access.log";

        autoindex    on;
        index        index.php index.html index.htm;

        location / {
            try_files $uri $uri/ /index.php?_url=$uri&$args;
        }
        
        location  ~ \.php$ {
            fastcgi_pass   127.0.0.1:9001;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
        
        location ~ /\.ht {
            deny all;
        }

        location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
            expires       max;
            log_not_found off;
            access_log    off;
        }
    }
  1. 在浏览器中打开:http://127.0.0.1:20081/。
{"status":"1","value":"Hello World."}

如果你看到以前内容,恭喜你开发环境已经搭建完成,可以正式进入接口开发工作了。

接口测试工具

  • Postman - Chrome插件(谷歌浏览器插件)
  • Advanced REST Client - Mozilla Firefox插件

安装方法,请自行百度

你可能感兴趣的:(「PHP开发APP接口实战001」开发环境搭建)