解析PHP IMAP扩展等主机信息

时间:2016-03-20 13:15:34

标签: php regex email

我一直试图获取像PHP IMAP扩展一样的主机信息(主机名,端口,前缀......),但我无法弄清楚。示例字符串:

$host = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX'

我越接近PHPMailer(代码来自源代码):

$hostinfo = array();
if (!preg_match('/^((ssl|tls):\/\/)*([a-zA-Z0-9\.-]*):?([0-9]*)$/', trim($hostentry), $hostinfo)) {
    die(' Not a valid host entry');
}
// $hostinfo[2]: optional ssl or tls prefix
// $hostinfo[3]: the hostname
// $hostinfo[4]: optional port number
// The host string prefix can temporarily override the current setting for SMTPSecure
// If it's not specified, the default value is used

但我无法到达那里。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:3)

试试这个:

<?php
  $sourcestring='{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';
  preg_match_all('/{((?<proto>[^:]+?):\/\/)?(?<host>[^:\/]+?)(:(?<port>\d+?))?\/(?<path>[^}]+?)?}(?<folder>.+)/m',$sourcestring,$matches);
  echo "<pre>".print_r($matches,true);
?>

它将部件捕获为命名组。您可以按照名称(&#39; proto&#39;,&#39; host&#39;,&#39; port&#39;,&#39;路径&#39;和&#39;文件夹& #39;)

(它只是一个快照。所以,如果有些事情仍然不合适,请告诉我。)