API15

API15:JUtility/isWinOS

From Joomla! Documentation

Description

Method to determine if the host OS is Windows

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

isWinOS()


Returns

true if Windows OS

Defined in

libraries/joomla/utilities/utility.php

Importing

jimport( 'joomla.utilities.utility' );

Source Body

function isWinOS() {
        return strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples