有没有办法/是否可以使用php执行unix whois查询,可能使用system()。?
我正在尝试
echo '<pre>';
$last_line = system('whois ryansmurphy.com', $retval);
echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;
但它不起作用。我做错了什么?
什么都没看到,没有错误,没有输出。
答案 0 :(得分:0)
使用
exec($command, $output, $exit_code);
其中:
$ command - 你的命令(“whois ......”)
$ output - 命令输出。
$ exit_code - 命令退出代码
答案 1 :(得分:0)