我正在使用这个preg_match
值来验证服务器的输入是否没有各种恶意字符。
preg_match('/^[a-zA-Z)(\!@&,0-9\?_\-\.\s\*&\$\r\n]{0,'. $str_length.'}$/',$_POST['text'])
如果没有匹配,我返回 false,服务器不会接受它。我想添加指向该输入的链接。这样我就可以得到:
"hello there, this is my picture: http://myserver.com/imgs/user-images/user222.jpg
and this is my dog http://myserver.com/imgs/user-images/user222-dog.jpg"
如何将链接添加到我的输入?