PHP获得Linux环境下的硬盘UUID

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>


$dh = opendir('/dev/disk/by-uuid/');
while($file = readdir($dh)){
        if(is_link('/dev/disk/by-uuid/'.$file)){
                if( realpath('/dev/disk/by-uuid/'.$file) == '/dev/sda1'){
                        echo 'Found uuid='.$file.PHP_EOL;
                }
        }
}