How do I convert the string "E_ALL & ~E_NOTICE" to the decimal equivalent 6135?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



We're trying to move all of our configuration files for our DEV/TEST/PROD
and various python scripts and such that all need the same DB connection
parameters and pathing information to a common and simple config.ini file
they all can share across languages.

One snag I ran into is this:

[dart]
relative_url 	= /dart2
absolute_path 	= /home/www/dart2
log_level		= E_ALL & ~E_NOTICE

But when I read it in from the file, it's a string (of course)

$log_level_string = "E_ALL & ~E_NOTICE";
echo 'log level string = '.eval($log_level_string.';').'<br>';

This gives me nothing!:

	log level string =

Wheras this one gives the proper values:

echo 'log bit level = '.(E_ALL & ~E_NOTICE).'<br>';

Output is:

	log bit level = 6135

But that defeats the purpose of a config file.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux