Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vivesweb authored Jul 20, 2021
1 parent daa210f commit 10a9b91
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,19 @@ Example:



- **GET A VALUE FROM BYTES TO NEXT MEASURE (B, KB, MB, GB, TB, PB):**

This extra method helps to get results more Human understanding. It returns a value in Bytes, Kbytes, Mbytes, Gbytes, Tbytes, Pbytes. You pass to the method the value in integer Bytes.

*$sys_res->convert( INT );*

Example:

$TotalHdBytes = $sys_res->Resources->fGetTotalHD();
$TotalHd = $sys_res->convert( $TotalHdBytes ); // return 2tb, for example



- **GET CPU LOAD AVERAGE ( Only GNU/Linux ):**

Get the CPU Average load over the last 1, 5 and 15 minutes, respectively
Expand Down

0 comments on commit 10a9b91

Please sign in to comment.