7 lines
229 B
PHP
Raw Normal View History

<?php
if (preg_match('/^Pacific Broadband Networks .+\n.+ Version ([^,]+), .+\n.+\n.+\nSerial num:([^,]+), .+/', $poll_device['sysDescr'], $regexp_result)) {
2015-07-13 20:10:26 +02:00
$version = $regexp_result[1];
$serial = $regexp_result[2];
}