企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 《xdebug官方说明》 https://xdebug.org/docs/remote ## 《十分钟搞定mac下的phpstorm增加xdebug调试》 https://www.cnblogs.com/spareribs/archive/2017/06/27/7084828.html ## 《mac os安装 autoconf and automake》 你需要安装很多东西四大类,请按照以下顺序安装: 安装的版本包也不能错: #### m4 ``` curl -O http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz tar -xzvf m4-1.4.13.tar.gz cd m4-1.4.13 ./configure --prefix=/usr/local make sudo make install ``` #### autoconf ``` cd .. curl -O http://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz tar -xzvf autoconf-2.65.tar.gz cd autoconf-2.65 ./configure --prefix=/usr/local make sudo make install ``` #### automake ``` cd .. curl -O http://mirrors.kernel.org/gnu/automake/automake-1.11.tar.gz tar xzvf automake-1.11.tar.gz cd automake-1.11 ./configure --prefix=/usr/local make sudo make install ``` #### libtool ``` cd .. curl -O http://mirrors.kernel.org/gnu/libtool/libtool-2.2.6b.tar.gz tar xzvf libtool-2.2.6b.tar.gz cd libtool-2.2.6b ./configure --prefix=/usr/local make sudo make install ``` ## 配置 ``` [xdebug] zend_extension="" xdebug.remote_enable=off xdebug.profiler_enbale=off xdebug.profiler_enable_trigger=On ;xdebug.profiler_output_name=cachegrind.out.%t.%p ;xdebug.profiler_dir="c:/wamp64/tmp" ;xdebug.show_local_vars=0 xdebug.idekey=PHPSTORM xdebug.remote_enable=On xdebug.remote_host=localhost xdebug.remote_port=9001 xdebug.remote_handler=dbgp ;xdebug.remote_autostart=off ```