ekiwok/is-windows

Check if operating system is Windows.

1.0.0 2018-12-13 21:28 UTC

This package is auto-updated.

Last update: 2024-09-14 10:34:12 UTC


README

Ready to check if you are running on Windows? Build Status

Installation

composer install ekiwok/is-windows

Usage

<?php

use function Ekiwok\isWindows;

echo (isWindows() ? 'It might be Windows.' : 'It might not be Windows.') . PHP_EOL;