问题相当简单。我想从帖子中删除文字链接。
$post = $_POST['text'];
//something to remove any instance of a text link
请理解我不是要删除
<a href="...">text</a>
相反,我只想删除任何明文链接
This is an example. All this is okay but I want the following stripped:
http://someurl.com/... or http://www.someurl.com/...
以下是我一直在尝试的内容:
$post = preg_replace(@^(http\:\/\/|https\:\/\/)?([a-z0-9][a-z0-9\-]*\.)+[a-z0-9][a-z0-9\-]*$@i, '', $posted);
我收到错误:意外'^',如果我删除^然后我收到意外的':'错误。