There is any way to set them in auto completion code in lowercase? Automatically they appear in UPPERCASE, I know that constants are defined in UPPERCASE but I prefer lowercase for them.
+2
A:
I found the next 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 some "define" and delete netbeans cache at: %USERS%.netbeans\6.9\var\cache\
Wiliam
2010-08-20 08:35:09
You totally rock!
hopeseekr
2010-09-10 17:27:19