Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
OsInfo.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Framework;
7 
11 class OsInfo
12 {
18  protected $os;
19 
23  public function __construct()
24  {
25  $this->os = PHP_OS;
26  }
27 
33  public function isWindows()
34  {
35  return strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
36  }
37 }