2015-05-29 11:01:55 +02:00
|
|
|
<?php
|
|
|
|
|
|
2018-01-07 05:00:47 +00:00
|
|
|
if (preg_match('/^Pacific Broadband Networks .+\n.+ Version ([^,]+), .+\n.+\n.+\nSerial num:([^,]+), .+/', $device['sysDescr'], $regexp_result)) {
|
2015-07-13 20:10:26 +02:00
|
|
|
$version = $regexp_result[1];
|
2020-09-21 15:43:38 +02:00
|
|
|
$serial = $regexp_result[2];
|
2015-07-13 20:10:26 +02:00
|
|
|
}
|