使用PHP从df -h --total捕获特定值

时间:2019-06-12 13:24:14

标签: php df

如何在centos上运行import gensim.downloader as api model = api.load("word2vec-google-news-300") 之后从提取的内容下方填充一个包含总值的变量。注意:结果不是来自命令行,而是来自php文件。

如何仅使用PHP捕获最后一行中的百分比值?

df -h --total

I.E。我想要一个值为63%的变量

Filesystem Size Used Avail Use% Mounted on
/dev/mapper/rhel-root 20G 685M 20G 4% /
devtmpfs 40G 0 40G 0% /dev
tmpfs 40G 0 40G 0% /dev/shm
tmpfs 40G 177M 40G 1% /run
tmpfs 40G 0 40G 0% /sys/fs/cg
/dev/mapper/rhel-usr 20G 3.2G 17G 16% /usr
/dev/sda2 1014M 223M 792M 22% /boot
/dev/mapper/rhel-opt_mycom 100G 37G 63G 37% /opt/my
/dev/mapper/oradb-nimsdb 2.0T 1.5T 614G 71% /opt/my/data
/dev/mapper/redo-logs 305G 72G 234G 24% /opt/my/data/
/dev/mapper/rhel-home 20G 472M 20G 3% /home
/dev/mapper/rhel-var 20G 1.4G 19G 7% /var
tmpfs 7.9G 0 7.9G 0% /run/user/1000
total 3.6T 2.3T 1.4T 63% -

3 个答案:

答案 0 :(得分:5)

您可以添加grepawk来提取所需的信息:

$result = $ssh->exec("df -h --total | grep '^total ' | awk '{print $5}'");

请注意,您需要更改正在执行的报价的类型才能正常工作。只需复制并粘贴上面的内容,就可以了。

答案 1 :(得分:2)

也许您可以根据需要调整此代码段:

$data = <<<EOF
Filesystem           1K-blocks      Used Available Use% Mounted on
ubi0_0                  143180     89740     53440  63% /
tmpfs                       64         0        64   0% /dev
tmpfs                   143124        76    143048   0% /tmp
tmpfs                     4096       912      3184  22% /var
tmpfs                       64         0        64   0% /mnt
ubi1_0                  468256     12144    456112   3% /opt/data/settings
EOF;

print_r(array_map(function($line){
    $elements=preg_split('/\s+/',$line);
    return(array(
    'filesystem' => $elements[0],
    '1k-blocks' => $elements[1],
    'used' => $elements[2],
    'available' => $elements[3],
    'use%' => $elements[4],
    'mounted_on' => $elements[5]
    ));
},explode("\n",$data)));

https://gist.github.com/cschaba/4740323

答案 2 :(得分:1)

对不起,如果我误解了这个问题,我认为这可能是您正在寻找的答案...:)

版本1:

#executes the comand and stores in array
$testExec = exec("df -h --total" ,$testArray);
#moves to the end off the array
$testArrayEnd = end($testExec);
#splits the last line into an array
$stringArray = explode(' ',$testArrayEnd);
foreach($stringArray as $string){
    #checks if the string contains a % 
    if (preg_match("/%/", $string)) {
        #there is only one % so this is what you're looking for
        $percentage = $string;
        var_dump($percentage);
    }
}

PS。 @ReynierPM您不需要shell_exec即可获得完整的输出返回...您只需要定义一个要在其中存储数据的数组... :)并授予它不是字符串,但可以轻松地对其进行转换使用implode()

版本2:

对不起,如果您不同意但我不愿意编辑@Nazariy答案,因为我要添加/更改太多内容(在此阶段,请参阅编辑历史记录:)。

#thanks go out to ReynierPM
#returns string with every entry being separated by a newline 
$output = shell_exec('df -h --total');

$ArrayFull=(array_map(function($line){ /*<-- *¹ & *² */
    $elements=preg_split('/\s+/',$line); /*<--- *4  */>
    return(array(
    'filesystem' => $elements[0],
    '1k-blocks' => $elements[1],
    'used' => $elements[2],
    'available' => $elements[3],
    'use%' => $elements[4],
    'mounted_on' => $elements[5]
    ));
},explode("\n",$output))); /*(<--- *³)*/

#removes bloat
unset($ArrayFull[0]);
#Rebase array keys https://stackoverflow.com/questions/5943149/rebase-array-keys-after-unsetting-elements
$ArrayFull=array_values($ArrayFull);

#if you only want the last value ;)
$lastVallue = end($ArrayFull);

说明:


array_map也将其应用于数组中的所有值     “ array_map —将回调应用于给定数组的元素”

我们首先为它提供一个回调函数,该回调函数将为每个元素调用,并向其传递变量$ line(我们将其用于存储由爆炸创建的行)

我们使用array_maps通过\ n进行爆炸(为每个新行创建一个数组项)(我们当然在$ data上进行爆炸)
* 4
现在,每一行都被分隔开了……我们将分隔开的行拆分为子字符串,并将其存储在新变量中。 preg_split('/ \ s + /',$ line)将$ line拆分为一个数组,而不必处理多个白色空间的问题。代表空间。

对不起,格式...稍后将对其进行编辑:)