Files

11 lines
320 B
PHP
Raw Permalink Normal View History

2020-05-07 00:34:02 +03:00
<?php
preg_match('/^(.*) Device, Compiled /', $device['sysDescr'], $matches);
$hardware = $matches[1];
preg_match('/^ SoftWare Version (?:' . $hardware . '_)?(.*)$/m', $device['sysDescr'], $matches);
$version = $matches[1];
preg_match('/^ Serial No\.:(.*)$/m', $device['sysDescr'], $matches);
$serial = $matches[1];