From ca07265c867842804d61acda69955228858ee010 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Thu, 25 Sep 2003 08:01:22 +0000 Subject: [PATCH] making the example less confusing for begginers git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@141052 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/info/functions/php-uname.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/info/functions/php-uname.xml b/reference/info/functions/php-uname.xml index 11ea655a90..b7085cc311 100644 --- a/reference/info/functions/php-uname.xml +++ b/reference/info/functions/php-uname.xml @@ -1,5 +1,5 @@ - + @@ -41,9 +41,9 @@ WINNT */ 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!'; } ?>