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!'; } ?>