views:

77

answers:

1

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
You totally rock!
hopeseekr