💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
一样的配置,在windows上可以正常的跑,在Mac上却折腾了接近1个月,蛋疼 一个月之前切换到Mac开发环境,同样的Xdebug配置在Mac上却总是有问题 今天静下心来,一步一步来排除问题解决问题,最后发现出在一个配置问题上,之前觉得是remote_ip文件谁知道是remote_connect_back 的问题 把这个配置禁用就好了 ~~~ [XDebug] zend_extension = xdebug.so xdebug.remote_enable = On xdebug.remote_handler = dbgp xdebug.remote_autostart = On xdebug.remote_host = 192.168.1.135 xdebug.remote_port = 9000 xdebug.auto_trace = On xdebug.default_enable = On xdebug.collect_vars = On xdebug.collect_return = On xdebug.collect_params = On xdebug.profiler_enable = on xdebug.profiler_output_dir = /disk_data/xdebug/log xdebug.trace_output_dir = /disk_data/xdebug/log xdebug.show_exception_trace = On ~~~ 端口设置成9000默认的就好了,会自动反射数据到192.168.1.135:9000的机器上,在这台机器开启PHPSTORM即可,调试方法照旧 人家开发出来的东西肯定不会错,错的是我们自己而已! 果然,解决问题一定要静下心来,碰到问题要分析! 苦海无涯!!!!!!