如何在CentOS Linux上使用php从whois命令中剪切字符串?
我只想从Domain Name:行切到>>>Last update...<<<行。
我的代码:

<?php
$output = shell_exec('whois facebook.com');
$result = preg_split('/\n\n/', trim($output));
var_dump($result);
?>

最佳答案

使用sed如何:

whois facebook.com | sed -n '/^Domain names/,/^>>> Last update/p'

这将得到从Domain names开始的行和从>>> Last update开始的行之间的所有行。

关于php - 如何在Linux中从Whois命令中剪切字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43889282/

10-11 21:25