我的开发环境中的Xdebug存在问题。
FROM library/php:5.5-apache
RUN apt-get -qqy update && apt-get -qqy install \
libpq-dev \
libmcrypt-dev \
libxml2-dev \
ssl-cert \
vim \
git \
mc \
&& rm -r /var/lib/apt/lists/*
# compile and add xdebug
RUN pecl install xdebug \
&& echo "zend_extension=xdebug.so" >> "/usr/local/etc/php/conf.d/xdebug.ini"
# configure apache and vhosts
RUN a2enmod rewrite ssl \
&& a2ensite 000-default default-ssl
ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data
ENV APACHE_LOG_DIR /var/log/apache2
ENV APACHE_RUN_DIR /var/run/apache2
ENV APACHE_PID_FILE /var/run/apache2/apache2.pid
ENV APACHE_LOCK_DIR /var/lock/apache2
CMD ["apache2-foreground"]
Xdebug设置:
[xdebug]
xdebug.remote_enable=1
xdebug.remote_autostart=0
xdebug.remote_host=172.17.42.1
xdebug.remote_port=9000
一切都很好但只有一件事。调试代码时:
<?php
class A {
static private $a;
static public function init() {
self::$a = 123;
}
}
A::init();
如果我在self::$a = 123;
上设置断点或进入该行,我会得到:
Fatal error: Access to undeclared static property: A::$a
如果我没有进入该行,调试会话将继续进行,没有任何问题。
怎么了?
答案 0 :(得分:2)
我认为这是XDebug中的某个错误 - 请参阅这些错误报告
与此同时,您可以通过在引发异常的行之后使用xdebug_break()
函数并从那里继续调试来解决该问题。抛出异常后我尝试在行上设置断点,我发现断点不足以阻止它抛出异常。
不是一个完美的解决方案,但希望这些错误很快得到修复
答案 1 :(得分:1)
所描述的错误只能在官方PHP5图像中重现。 PHP 7图像工作正常,当从jessie或ubuntu构建自定义PHP5 FPM图像时,也不会发生错误。