视觉工作室代码php xdebug无法正常工作

时间:2018-01-26 11:13:41

标签: php visual-studio debugging

我安装了XAMPP。 我还在Visual Studio Code中安装了PHP intelliSence和PHP调试。 我在... / php / ext /.

中设置了php_xdebug.dll

虽然我在我的php文件上设置了一些断点,但它没有工作......

你能告诉我如何在vs代码中调试php吗?

  

launch.json

matrix2 <- c(
  c(6,6,6,6,6,6),
  c(6,6,6,6,6,6),
  c(6,6,6,6,6,6),
  c(6,6,6,6,6,6)
)
dim(matrix2) <- c(6,4)

x <- c(1,2,3,4,5, 6)
y <- c(1,2,3,4)
rownames(matrix2) <- x
colnames(matrix2) <- y


plot_ly() %>% add_surface(z~matrix2, x= x, y = y)

matrix22 <- c(
  c(5,5.5,6,6.5),
  c(5,5.5,6,6.5),
  c(5,5.5,6,6.5),
  c(5,5.5,6,6.5)
)
dim(matrix22) <- c(4,4)

x2 <- c(1,2,3,4)
y2 <- c(3,3,3,3)
rownames(matrix22) <- x2
colnames(matrix22) <- y2

plot_ly() %>% add_surface(z~matrix22, x= x2, y = y2) %>% add_surface(z~matrix2, x= x, y = y)
  

PHP.ini中

{
        "name": "Listen for XDebug",
        "type": "php",
        "request": "launch",
        "port": 9010,
        "pathMappings": {
                "${C:/xampp/tdocs}": "${workspaceRoot}"
            }
    }

1 个答案:

答案 0 :(得分:1)

我解决了这个问题。 我解决了以下问题。

  • 我已将xdebug文件名从默认名称重命名为&#34; php_xdebug.dll&#34;但它没有用,所以我试着不改名字。
  • Xdebug效果很好,然后我访问localhost / ***。php。