didou Thu Sep 25 04:01:22 2003 EDT
Modified files:
/phpdoc/en/reference/info/functions php-uname.xml
Log:
making the example less confusing for begginers
Index: phpdoc/en/reference/info/functions/php-uname.xml
diff -u phpdoc/en/reference/info/functions/php-uname.xml:1.6
phpdoc/en/reference/info/functions/php-uname.xml:1.7
--- phpdoc/en/reference/info/functions/php-uname.xml:1.6 Wed Sep 24 19:01:58
2003
+++ phpdoc/en/reference/info/functions/php-uname.xml Thu Sep 25 04:01:22 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/info.xml, last change in rev 1.7 -->
<refentry id="function.php-uname">
<refnamediv>
@@ -41,9 +41,9 @@
*/
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
- echo 'You are using Windows!';
+ echo 'This is a server using Windows!';
} else {
- echo 'You are not using Windows!';
+ echo 'This os a server not using Windows!';
}
?>