Ratings | | Unique User Downloads | | Download Rankings |
Not enough user ratings | | Total: 245 | | All time: 7,986 This week: 673 |
|
Description | | Author |
This class can get system resources of a Windows based computer.
It runs the wmic program from a shell command and parses the output to retrieve the details of several types of computer resources.
Currently it can retrieve the value of the operating system details, the CPU, RAM, physical drives, graphics cards, BIOS, printers and network card. | |
|
|
Innovation award
Nominee: 2x
Winner: 1x |
|
Example
<?php
/***************************************************************************************
Using Class DetectBasicInfoComputerWin
***************************************************************************************/
ini_set("xdebug.overload_var_dump",1); // to hide path of script with var_dump
require('detectBasicInfoComputerWin.php');
$bInfoComptWin = new DetectBasicInfoComputerWin();
echo '<center><h1>View basic information about your computer OS Windows With PHP</h1></center>';
echo '<b>Information About Operating System</b><hr>';
var_dump(trim($bInfoComptWin->osystem()));
echo '<b>Information About CPU</b><hr>';
var_dump(trim($bInfoComptWin->getCpuInfo()));
echo '<b>Information About RAM Max Capacity</b><hr>';
var_dump(trim($bInfoComptWin->getRamMaxCap()));
echo '<b>Information About Physical Drives</b><hr>';
var_dump(trim($bInfoComptWin->getPhysDriv()));
echo '<b>Information About graphics card</b><hr>';
var_dump(trim($bInfoComptWin->getCard()));
echo '<b>Information About BIOS</b><hr>';
var_dump(trim($bInfoComptWin->getBios()));
echo '<b>Information About Printer list status</b><hr>';
var_dump(trim($bInfoComptWin->getPrinterList()));
echo '<b>Information About the Network card</b><hr>';
var_dump(trim($bInfoComptWin->getNetworkCard()));
|
Details
PHP-Detect-Computer-Basic-Information
This package can extract basic information about your computer from the HTTP request.
Currently it can view basic information of the current user computer with OS Windows like Operating System,CPU,RAM,Physical Drives,graphics card,BIOS,Printer list status or Network card
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.