05/11
2014
Package to detect server operating system and its data-path width processor.
Package to detect server operating system and its data-path width processor., (*1)
<?php use BrownPaperBag\OS; if(OS::isWindows()){ // Do something for Windows... } else{ // Doing something for Linux or Mac if(OS::is32bit()){ // Do something for 32bit processor... } else{ // Do something for 64bit processor... } }
MIT, (*2)