将输出从df存储到PHP数组

时间:2016-04-25 15:06:40

标签: php html arrays raspberry-pi

我为我的Raspberry Pi构建了一个HTML仪表板,我对PHP很新。我试图将df的输出存储到数组(我认为)以便稍后在HTML页面上回显。

df命令是我通过exec()传递的:

df -Tl -BMB -x tmpfs -x devtmpfs | grep -v Filesystem | column -t

我收到的输出(来自shell)是:

/dev/root       ext4  31331MB  1214MB  28816MB  5%   /
/dev/mmcblk0p1  vfat  63MB     22MB    42MB     35%  /boot

有没有办法将每个值(从每一行)存储到一个数组中,以便我可以在HTML页面中回显它?使用类似下面的内容?

<tbody>
   <tr>
    <td>Disk space (MB)</td>
    <td><pre><?php echo $disks[0]; ?></pre></td>
    <td><pre><?php echo $disks[1]; ?></pre></td>
  </tr>
</tbody>

任何帮助将不胜感激!

0 个答案:

没有答案