Skip to content

Instantly share code, notes, and snippets.

@Addvilz
Created August 22, 2012 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Addvilz/3426914 to your computer and use it in GitHub Desktop.
Save Addvilz/3426914 to your computer and use it in GitHub Desktop.
Get hdd info
exec('/sbin/udevadm info --query=property --name=sda',$arr,$out);
$dopts = array();
foreach($arr as $item){
$parts = explode('=',$item);
$dopts[$parts[0]] = $parts[1];
}
print_r($dopts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment