Working with PHP Datatypes
By Steve Adcock2005-05-14
Finding your PHP info
<?A cool little pre-defined PHP constant will let you view the type of operating system that your PHP installation is operating on. To use that, follow the following code:
phpinfo()
?>
<?The echo syntax will simply print out whatever is within the parenthesis; in this case, the value of the variable PHP_OS.
echo(PHP_OS);
?>
Tutorial pages:
|
|
|||||||||
You might also want to check these out:
|
Leave a Comment on "Working with PHP Datatypes"
You must be logged in to post a comment.
Link to This Tutorial Page!

