没有本地可用的所有文件时的Xdebug

时间:2018-09-01 01:12:20

标签: wordpress docker xdebug

我有一个完整的LAMP堆栈在Docker中运行。我在本地只能编辑//Utility const readUserUtility = (id_a)=>{ const currentstore = store.getState(); const returnedArray = currentstore.users.filter((user_object)=>{ return user_object.id === id_a; }) try{if(returnedArray.length === 0){throw "Array empty";}}catch(error){ console.log(error); } console.log(returnedArray); } 的一个子文件夹,运行容器时将配置Web应用程序的其余部分,本地编辑文件将同步到需要的地方。

Xdebug已安装,我可以使用htdocspugdebug从主机正常连接到它。在PhpStorm中,当我开始调试会话时,它首先到达了我无法映射的路径,因此无法从此处继续。

是唯一在本地镜像整个Web应用程序的解决方案吗?

要编辑的本地文件是WordPress plugin,Web应用程序是WordPress。

0 个答案:

没有答案