我想在 linux 上使用 php 获取我网络的所有路由器列表。我已经尝试过 php exec 和 system 函数,但它只在输出中提供一个路由器。
如何获取路由器的完整列表?
$last_line = system('iwlist scan', $retval);
echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;
$last_line = system('iwlist scan | grep ESSID', $retval);
echo '
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;