Answer the question
In order to leave comments, you need to log in
2 network cards 2 browsers?
There are two kerio, there are two network cards on the computer, and therefore two ip addresses. How to configure so that 1 browser goes only through 1 network card and 2 browser only through 2 network cards? There is no way to set up a proxy.
Answer the question
In order to leave comments, you need to log in
Give 1 network card to a virtual machine and run a second browser in it
One browser to start up through a proxy. The second through nat. Then everything is destroyed by the rules
return does not output data anywhere, it returns the value of the function. Yes, you can return an array this way, there's nothing wrong with that. In modern versions of PHP, arrays can be written shorter:
return ['str' => $result[0], 'gor' => $result[1]];
This will be the norm:
function geo($city = null) {
// ...
return [
'str' => $result[0],
'gor' => $result[1],
];
}
function geo($city = null) {
$result = [];
// ...
$result['str'] = $data[0];
$result['gor'] = $data[1];
return $result;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question