• PhpStorm 断点调试


    一、准备工作

    1. 安装 php7.0
    2. 安装 phpstorm
    3. 安装 xdebug2.4
    4. 安装 chrome 插件

    二、Web 工程创建

    1. 添加 php 引擎
    2. 添加 web 访问端口

    php 引擎配置:phpStorm -> settings -> Languages & Frameworks -> PHP

    PHP language level CLI Interpreter Name PHP executable
    7.0 Add Other Local PHP 7.0 /usr/bin/php

    web 访问端口配置:phpStorm -> settings -> Languages & Frameworks -> PHP -> Servers

    Name Host Port Debugger
    PhpStorm 2018.1.7 PhpStorm 2018.1.7 63342 Xdebug

    三、Web 断点调试

    1. 修改 xdebug 配置
    2. 修改 phpstorm 配置
    3. 启动 chrome 插件

    xdebug 配置:vi /etc/php/7.0/mods-available/xdebug.ini

    zend_extension=xdebug.so
    xdebug.idekey="PHPSTORM"
    xdebug.profiler_enable=1     
    xdebug.profiler_output_dir="/tmp/xdebug"
    xdebug.remote_enable=1
    xdebug.remote_port=9000
    xdebug.remote_host="localhost"
    xdebug.trace_output_dir="/tmp/xdebug"
    

    phpstorm 配置:phpStorm -> settings -> Languages & Frameworks -> PHP -> Debug

    Xdebug Debug port DBGp Proxy Port
    全选 9000 9001
  • 相关阅读:
    thusc总结
    5.12总结
    5.9总结
    C语言学习之笔记
    C语言----------指针
    typedef , static和 extern
    数据库(mysql5.5)的一些基本的操作
    Java中基本数据类型占几个字节多少位
    java &和&& 以及 |和 ||之间的异同点
    拨开云雾见月明
  • 原文地址:https://www.cnblogs.com/zzzz76/p/13471088.html
Copyright © 2020-2023  润新知