请教怎么让 php-fpm/xdebug status 命令正常工作,我想手动启用xdebug
mac 信息
docker 版本
docker compose 版本
xdebug 已在工作区中打开,并且 php-fpm 在此处输入图像描述
PHP 7.4
xdebug 3.1.6
xdebug.ini 配置文件
xdebug.client_host=host.docker.internal
xdebug.client_port=9003
xdebug.remote_connect_back=0
xdebug.idekey=PHPSTORM
xdebug.max_nesting_level=250
xdebug.log_level=10
xdebug.log="/var/www/xdebug_logs/xdebug_docker.log"
xdebug.remote_autostart=0
xdebug.remote_enable=0
xdebug.cli_color=0
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.var_display_max_children=-1
xdebug.var_display_max_data=-1
xdebug.var_display_max_depth=-1
xdebug.mode = develop,debug,profile,trace ;
xdebug.profiler_append = 0
xdebug.profiler_output_name = cachegrind.out.%p
xdebug.start_with_request = yes;
xdebug.trigger_value=StartProfileForMe;
xdebug.output_dir = /tmp ;
xdebug.discover_client_host=1
我尝试更改remote_enable=1,但php-fpm/xdebug start也不起作用。