Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cant get "cpuUsage" with "$linfo->getInfo();" #48

Closed
noahwaldner opened this issue Dec 12, 2016 · 3 comments
Closed

Cant get "cpuUsage" with "$linfo->getInfo();" #48

noahwaldner opened this issue Dec 12, 2016 · 3 comments

Comments

@noahwaldner
Copy link

Cant get the Value of "cpuUsage", its empty.

@jrgp
Copy link
Owner

jrgp commented Dec 14, 2016

You need to first call determineCPUPercentage() before running getInfo().
Something like the following should work:

$linfo = new \Linfo\Linfo;
$linfo->getParser()->determineCPUPercentage();
$linfo->getInfo();

@jrgp jrgp closed this as completed Dec 14, 2016
@noahwaldner
Copy link
Author

require_once dirname(FILE).'/init.php';

$linfo = new Linfo;
$linfo->getParser()->determineCPUPercentage();
$linfo->scan();
$values = $linfo->getInfo();

in $values the CPU Usage Field is empty.

@jrgp
Copy link
Owner

jrgp commented Dec 18, 2016

Just looked into this. The following works for me:

<?php

require_once __DIR__ . '/standalone_autoload.php';

$linfo = new \Linfo\Linfo;
$parser = $linfo->getParser();
$parser->determineCPUPercentage();

var_dump($parser->getCPU());

And then:

$ php foo.php
array(4) {
  [0]=>
  array(4) {
    ["usage_percentage"]=>
    float(5)
    ["Vendor"]=>
    string(12) "GenuineIntel"
    ["Model"]=>
    string(39) "Intel(R) Core(TM) i5-4590 CPU @ 3.30GHz"
    ["MHz"]=>
    string(8) "3594.937"
  }

Admittedly the API could be cleaner but it works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants