在基于 Debian 的系统上使用 PHP 检查系统更新

Check for system updates with PHP on Debian-based

我正在开发一个PHP监控平台,我发现了this post。它工作得很好,我想对 apt-get update 做同样的事情。是否可以检查 PHP 是否有可用的系统更新?我不知道如何处理 apt-get update.

的输出
        $o  = `apt list --upgradable`;
        $upgratable = explode("\n", $o);
        $l = count($upgratable);
        $u = [];
        for($i=1; $i<$l-1; $i++){
            $u[substr($upgratable[$i],0,strpos($upgratable[$i], ' '))] = substr($upgratable[$i],strpos($upgratable[$i], ' '));

        }
        dump($u);


// btw
//        pingAddress('https://whosebug.com'); // The IP address, https://whosebug.com, is dead
//        pingAddress('127.0.0.1'); // The IP address, 127.0.0.1, is dead