ekiwok/is-windows

检查操作系统是否为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

准备好检查您是否在Windows上运行了吗? 构建状态

安装

composer install ekiwok/is-windows

用法

<?php

use function Ekiwok\isWindows;

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