服务器在ubuntu v16.04
php7 xdedug 都是官网最新下载!
------------
zend_extension="/usr/local/lib/php/extensions/no-debug-non-zts-20151012/xdebug.so"
zend_extension_debug=.
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
; xdebug.remote_mode=req
xdebug.remote_connect_back=1
xdebug.remote_autostart=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey=PHPSTORM
这是php配置,
/phpinfo.php是可以看到这些配置的。
---
现在在php文件里,
这是一个html网页,嵌入:
<?php
require ("./read_resource.php");
$music_names = get_theme_music();
for ($i = 0; $i < count($music_names); ++$i){
echo "<script type='text/javascript'>store_music_name(\"$music_names[$i]\")</script>";
}
?>
在这一段下断点,就是不走断点。
求帮助!
怎么解决