Hey Coders,
I've been staring at this function for way too long and need your support. Simply, I am trying to get the exploded array of values to return back. Nothing has worked well for me...
function set_ports($ports) {
$ports_array = explode(",",$ports);
foreach($ports_array as $key=>$val) {
if(ereg("([0-9]+)\-([0-9]+)",$val, $buff)) {
for($ii=$buff[1]; $ii<=$buff[2]; $ii++) {
$this->ports[] = $ii;
}
}
else {
$this->ports[] = $val;
}
}
}
So, after running the following:
$my_scanner->set_ports(1-5,80);
... I should have a return of 1,2,3,4,5,80 if you can get it to work.
Please check it out! Thanks.
exius