Start · Sprachen · PHP · Referenz · PHP_OS_FAMILY

PHP_OS_FAMILY

Konstante

OS-Familie: <code>Windows</code>, <code>BSD</code>, <code>Darwin</code>, <code>Solaris</code>, <code>Linux</code>, <code>Unknown</code>.

seit PHP 7.2.0 Kategorie: misc

Signatur

const PHP_OS_FAMILY

Beschreibung

Bequemer als PHP_OS für Cross-Platform-Code.

Rückgabewert

Typ
string

Beispiele

Platform-Branch

<?php

$sep = PHP_OS_FAMILY === 'Windows' ? ';' : ':';