| 
 Posted by lwoods on 06/17/37 11:25 
Sorry for previous email...hit the wrong key! 
 
Original Email: 
 
I ran the following code: 
<?php 
$a=get_defined_constants(); 
foreach($a as $key=>$value){ 
 echo "$key = $value<br/>"; 
 } 
?> 
 
and got the following as part of my output: 
...... 
PHP_EXTENSION_DIR = C:\php5 
PHP_PREFIX = C:\php5 
PHP_BINDIR = C:\php5 
PHP_LIBDIR = C:\php5 
PHP_DATADIR = C:\php5 
PHP_SYSCONFDIR = C:\php5 
PHP_LOCALSTATEDIR = C:\php5 
 
But I don't HAVE a "C:\php5" folder.  I have everything in a folder called  
"C:\PHP"...and when I run phpinfo() it lists the "C:\PHP\..." folder names  
for 'includes', 'extensions', etc. 
 
This tells me that you can't depend on the predefined constants. 
 
???????????????? 
 
Larry Woods
 
[Back to original message] 
 |