I found the following in C: \ Program Files \ NetBeans 6.9.1 \ php \ phpstubs \ phpruntime \ Core.php
define ('LOG_PERROR', 32);
define ('TRUE', true);
define ('FALSE', false);
define ('NULL', null);
define ('ZEND_THREAD_SAFE', false);
define ('ZEND_DEBUG_BUILD', false);
to
define ('LOG_PERROR', 32);
//define ('TRUE', true);
//define ('FALSE', false);
//define ('NULL', null);
define ('ZEND_THREAD_SAFE', false);
define ('ZEND_DEBUG_BUILD', false);
Comment on some “definition” and remove the netbeans cache:% USERS% .netbeans \ 6.9 \ var \ cache \
source
share