以下是我的启动配置:
<div class="ds-results-detail-a">${a}</div>
以下图片显示我得到的错误。
答案 0 :(得分:0)
您正在使用Apache吗?您是否尝试过将x-debug扩展名添加到apache设置中?
将这些行放入您的php.ini文件中:
ArrayList<String> results = new ArrayList<String>();
for(String word : listTwo){
int count = Collections.frequency(list, word);
String result = word +": "+ count;
results.add(result);
}
,然后将配置文件上的端口更改为 [xdebug]
zend_extension="c:/wamp64/bin/php/php7.2.10/zend_ext/php_xdebug-2.6.1-7.2-vc15-x86_64.dll"
xdebug.remote_enable = 1
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=1
xdebug.remote_port = 9001
ps:您应该下载兼容版本的x-debug,并将其放在php的ext文件夹中。